| | |
| | | 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; |
| | |
| | | |
| | | @ApiModelProperty(value = "起始客户编码(起点位-1)", example = "1") |
| | | @ExcelColumn(name="起始客户编码(起点位-1)") |
| | | private Long startId; |
| | | private Integer startId; |
| | | |
| | | @ApiModelProperty(value = "终端客户编码(起点位-1)", example = "1") |
| | | @ExcelColumn(name="终端客户编码(起点位-1)") |
| | | private Long endId; |
| | | private Integer endId; |
| | | |
| | | @ApiModelProperty(value = "距离(米)", example = "1") |
| | | @ExcelColumn(name="距离(米)") |
| | |
| | | @ExcelColumn(name="途径经纬度集合,分号隔开") |
| | | private String steps; |
| | | |
| | | @ApiModelProperty(value = "维度", example = "1") |
| | | @ApiModelProperty(value = "起点纬度", example = "1") |
| | | @ExcelColumn(name="维度") |
| | | private BigDecimal startLatitude; |
| | | |
| | | @ApiModelProperty(value = "客户序号", example = "1") |
| | | @ApiModelProperty(value = "终点纬度", example = "1") |
| | | @ExcelColumn(name="客户序号") |
| | | private BigDecimal endLatitude; |
| | | |
| | | @ApiModelProperty(value = "送货路线编码(关联jk_line)", example = "1") |
| | | @ExcelColumn(name="送货路线编码(关联jk_line)") |
| | | @ApiModelProperty(value = "起点经度", example = "1") |
| | | private BigDecimal startLogitude; |
| | | |
| | | @ApiModelProperty(value = "状态 0正常 禁用", example = "1") |
| | | @ExcelColumn(name="状态 0正常 禁用") |
| | | @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; |
| | | |
| | | } |