| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspTravelPlanDayParam
- *
- * @author lhc
- * @date 2019-9-17
- */
- public class BisInspTravelPlanDayParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 路书ID
- @ApiParam(name = "路书ID")
- @ApiModelProperty(value = "路书ID", name = "travelPlanId")
- private String travelPlanId;
- // 简称
- @ApiParam(name = "简称")
- @ApiModelProperty(value = "简称", name = "title")
- private String title;
- // 行程耗时(分钟)
- @ApiParam(name = "行程耗时(分钟)")
- @ApiModelProperty(value = "行程耗时(分钟)", name = "minte")
- private Long minte;
- // 距离(公里)
- @ApiParam(name = "距离(公里)")
- @ApiModelProperty(value = "距离(公里)", name = "distance")
- private Double distance;
- // 顺序
- @ApiParam(name = "顺序")
- @ApiModelProperty(value = "顺序", name = "ordr")
- private Long ordr;
- // 插入时间
- @ApiParam(name = "插入时间")
- @ApiModelProperty(value = "插入时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public BisInspTravelPlanDayParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getTravelPlanId() {
- return travelPlanId;
- }
- public void setTravelPlanId(String travelPlanId) {
- this.travelPlanId = travelPlanId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Long getMinte() {
- return minte;
- }
- public void setMinte(Long minte) {
- this.minte = minte;
- }
- public Double getDistance() {
- return distance;
- }
- public void setDistance(Double distance) {
- this.distance = distance;
- }
- public Long getOrdr() {
- return ordr;
- }
- public void setOrdr(Long ordr) {
- this.ordr = ordr;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|