package com.doumee.dao.business.model; import com.baomidou.mybatisplus.annotation.TableField; import com.doumee.core.annotation.excel.ExcelColumn; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; import java.math.BigDecimal; /** * 交控-路线规划信息表 * @author 江蹄蹄 * @date 2025/10/13 15:48 */ @Data @ApiModel("交控-路线规划信息表") @TableName("`jk_customer_navigation`") public class JkCustomerNavigation { @TableId(type = IdType.AUTO) @ApiModelProperty(value = "主键", example = "1") @ExcelColumn(name="主键") private Integer id; @ApiModelProperty(value = "创建人编码", example = "1") @ExcelColumn(name="创建人编码") private Integer creator; @ApiModelProperty(value = "创建时间") @ExcelColumn(name="创建时间") @JsonFormat(pattern = "yyyy-MM-dd") private Date createDate; @ApiModelProperty(value = "更新人编码", example = "1") @ExcelColumn(name="更新人编码") private Integer editor; @ApiModelProperty(value = "更新时间") @ExcelColumn(name="更新时间") @JsonFormat(pattern = "yyyy-MM-dd") private Date editDate; @ApiModelProperty(value = "是否删除0否 1是", example = "1") @ExcelColumn(name="是否删除0否 1是") private Integer isdeleted; @ApiModelProperty(value = "备注") @ExcelColumn(name="备注") private String info; @ApiModelProperty(value = "起始客户编码(起点位-1)", example = "1") @ExcelColumn(name="起始客户编码(起点位-1)") private Integer startId; @ApiModelProperty(value = "终端客户编码(起点位-1)", example = "1") @ExcelColumn(name="终端客户编码(起点位-1)") private Integer endId; @ApiModelProperty(value = "距离(米)", example = "1") @ExcelColumn(name="距离(米)") private Long distance; @ApiModelProperty(value = "途径经纬度集合,分号隔开") @ExcelColumn(name="途径经纬度集合,分号隔开") private String steps; @ApiModelProperty(value = "起点纬度", example = "1") @ExcelColumn(name="维度") private BigDecimal startLatitude; @ApiModelProperty(value = "终点纬度", example = "1") @ExcelColumn(name="客户序号") private BigDecimal endLatitude; @ApiModelProperty(value = "起点经度", example = "1") private BigDecimal startLogitude; @ApiModelProperty(value = "终点经度", example = "1") private BigDecimal endLogitude; @ApiModelProperty(value = "起止点ID组合(startId-endId)") @ExcelColumn(name="起止点ID组合(startId-endId)") private String idIndex; @ApiModelProperty(value = "客户名称") @TableField(exist = false) private String name; @ApiModelProperty(value = "客户地址") @TableField(exist = false) private String location; }