package com.moral.api.entity; 
 | 
  
 | 
  
 | 
import lombok.Data; 
 | 
import lombok.EqualsAndHashCode; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.IdType; 
 | 
import com.baomidou.mybatisplus.annotation.TableId; 
 | 
import com.baomidou.mybatisplus.extension.activerecord.Model; 
 | 
  
 | 
/** 
 | 
 * 走航路段表 
 | 
 */ 
 | 
@Data 
 | 
@EqualsAndHashCode(callSuper = false) 
 | 
public class ManageCoordinate  extends Model<ManageCoordinate> { 
 | 
  
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /** 
 | 
     * 路段id 
 | 
     */ 
 | 
    @TableId(value = "coordinate_id", type = IdType.AUTO) 
 | 
    private  Integer coordinateId; 
 | 
    /** 
 | 
     * 起点名称 
 | 
     */ 
 | 
    private  String startPoint; 
 | 
    /** 
 | 
     * 终点名称 
 | 
     */ 
 | 
    private  String endPoint; 
 | 
    /** 
 | 
     *是否删除 
 | 
     */ 
 | 
    private  Integer isDel; 
 | 
    /** 
 | 
     * 创建时间 
 | 
     */ 
 | 
    private Date  createTime; 
 | 
    /** 
 | 
     * 修改时间 
 | 
     */ 
 | 
    private Date  updateTime; 
 | 
  
 | 
    /** 
 | 
     * 修改人id 
 | 
     * 
 | 
     */ 
 | 
    private  Integer updateUserId; 
 | 
    /** 
 | 
     * 修改人名称 
 | 
     */ 
 | 
    private  String updayeUserName; 
 | 
  
 | 
  
 | 
    private  Integer organizationId; 
 | 
} 
 |