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; /** * BisInspTravelPlanParam * * @author lhc * @date 2019-9-17 */ public class BisInspTravelPlanParam extends PageParam implements Serializable { private String id; // 行程标题 @ApiParam(name = "行程标题") @ApiModelProperty(value = "行程标题", name = "title") private String title; // 行程开始时间 @ApiParam(name = "行程开始时间") @ApiModelProperty(value = "行程开始时间", name = "sttm") private Date sttm; // 行程结束时间 @ApiParam(name = "行程结束时间") @ApiModelProperty(value = "行程结束时间", name = "entm") private Date entm; // 规划行程天数 @ApiParam(name = "规划行程天数") @ApiModelProperty(value = "规划行程天数", name = "dayCount") private Long dayCount; // 行程经过城市 @ApiParam(name = "行程经过城市") @ApiModelProperty(value = "行程经过城市", name = "pass") private String pass; // 创建人 @ApiParam(name = "创建人") @ApiModelProperty(value = "创建人", name = "persId") private String persId; // 插入时间 @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; // 是否收藏 0 未收藏 1 收藏 @ApiModelProperty(value = "是否收藏 0 未收藏 1 收藏", name = "isCollect") private String isCollect; // 督查组名称 @ApiModelProperty(value = "督查组名称", name = "planNm") private String planNm; // 督查组ID @ApiModelProperty(value = "督查组ID", name = "planId") private String planId; public BisInspTravelPlanParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Date getSttm() { return sttm; } public void setSttm(Date sttm) { this.sttm = sttm; } public Date getEntm() { return entm; } public void setEntm(Date entm) { this.entm = entm; } public Long getDayCount() { return dayCount; } public void setDayCount(Long dayCount) { this.dayCount = dayCount; } public String getPass() { return pass; } public void setPass(String pass) { this.pass = pass; } public String getPlanNm() { return planNm; } public void setPlanNm(String planNm) { this.planNm = planNm; } public String getPlanId() { return planId; } public void setPlanId(String planId) { this.planId = planId; } 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; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getIsCollect() { return isCollect; } public void setIsCollect(String isCollect) { this.isCollect = isCollect; } }