| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- 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;
- /**
- * BisInspTravelPlanShareParam
- *
- * @author lhc
- * @date 2020-2-12
- */
- public class BisInspTravelPlanShareParam extends PageParam implements Serializable {
- private String id;
- // 路书ID
- @ApiParam(name = "路书ID")
- @ApiModelProperty(value = "路书ID", name = "travelPlanId")
- private String travelPlanId;
- // 路书标题
- @ApiParam(name = "路书标题")
- @ApiModelProperty(value = "路书标题", name = "travelPlanTitle")
- private String travelPlanTitle;
- // 分享人ID
- @ApiParam(name = "分享人ID")
- @ApiModelProperty(value = "分享人ID", name = "persId")
- private String persId;
- // 分享人姓名
- @ApiParam(name = "分享人姓名")
- @ApiModelProperty(value = "分享人姓名", name = "persName")
- private String persName;
- // 分享接收人ID
- @ApiParam(name = "分享接收人ID")
- @ApiModelProperty(value = "分享接收人ID", name = "acptPersId")
- private String acptPersId;
- // 分享接收人姓名
- @ApiParam(name = "分享接收人姓名")
- @ApiModelProperty(value = "分享接收人姓名", name = "acptPersName")
- private String acptPersName;
- // 插入时间
- @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;
- // 行程开始时间
- @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 Integer dayCount;
- // 行程经过城市
- @ApiParam(name = "行程经过城市")
- @ApiModelProperty(value = "行程经过城市", name = "pass")
- private String pass;
- public BisInspTravelPlanShareParam() {
- }
- 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 getTravelPlanTitle() {
- return travelPlanTitle;
- }
- public void setTravelPlanTitle(String travelPlanTitle) {
- this.travelPlanTitle = travelPlanTitle;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getAcptPersId() {
- return acptPersId;
- }
- public void setAcptPersId(String acptPersId) {
- this.acptPersId = acptPersId;
- }
- public String getAcptPersName() {
- return acptPersName;
- }
- public void setAcptPersName(String acptPersName) {
- this.acptPersName = acptPersName;
- }
- 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 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 Integer getDayCount() {
- return dayCount;
- }
- public void setDayCount(Integer dayCount) {
- this.dayCount = dayCount;
- }
- public String getPass() {
- return pass;
- }
- public void setPass(String pass) {
- this.pass = pass;
- }
- }
|