9b2caf7392a058ab492a9d622a65e7d05c0c4e38.svn-base 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * BisInspTravelPlanShareParam
  9. *
  10. * @author lhc
  11. * @date 2020-2-12
  12. */
  13. public class BisInspTravelPlanShareParam extends PageParam implements Serializable {
  14. private String id;
  15. // 路书ID
  16. @ApiParam(name = "路书ID")
  17. @ApiModelProperty(value = "路书ID", name = "travelPlanId")
  18. private String travelPlanId;
  19. // 路书标题
  20. @ApiParam(name = "路书标题")
  21. @ApiModelProperty(value = "路书标题", name = "travelPlanTitle")
  22. private String travelPlanTitle;
  23. // 分享人ID
  24. @ApiParam(name = "分享人ID")
  25. @ApiModelProperty(value = "分享人ID", name = "persId")
  26. private String persId;
  27. // 分享人姓名
  28. @ApiParam(name = "分享人姓名")
  29. @ApiModelProperty(value = "分享人姓名", name = "persName")
  30. private String persName;
  31. // 分享接收人ID
  32. @ApiParam(name = "分享接收人ID")
  33. @ApiModelProperty(value = "分享接收人ID", name = "acptPersId")
  34. private String acptPersId;
  35. // 分享接收人姓名
  36. @ApiParam(name = "分享接收人姓名")
  37. @ApiModelProperty(value = "分享接收人姓名", name = "acptPersName")
  38. private String acptPersName;
  39. // 插入时间
  40. @ApiParam(name = "插入时间")
  41. @ApiModelProperty(value = "插入时间", name = "intm")
  42. private Date intm;
  43. // 修改时间
  44. @ApiParam(name = "修改时间")
  45. @ApiModelProperty(value = "修改时间", name = "uptm")
  46. private Date uptm;
  47. // 数据状态(0:正常;9:删除)
  48. @ApiParam(name = "数据状态(0:正常;9:删除)")
  49. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  50. private String dataStat;
  51. // 行程开始时间
  52. @ApiParam(name = "行程开始时间")
  53. @ApiModelProperty(value = "行程开始时间", name = "sttm")
  54. private Date sttm;
  55. // 行程结束时间
  56. @ApiParam(name = "行程结束时间")
  57. @ApiModelProperty(value = "行程结束时间", name = "entm")
  58. private Date entm;
  59. // 规划行程天数
  60. @ApiParam(name = "规划行程天数")
  61. @ApiModelProperty(value = "规划行程天数", name = "dayCount")
  62. private Integer dayCount;
  63. // 行程经过城市
  64. @ApiParam(name = "行程经过城市")
  65. @ApiModelProperty(value = "行程经过城市", name = "pass")
  66. private String pass;
  67. public BisInspTravelPlanShareParam() {
  68. }
  69. public String getId() {
  70. return id;
  71. }
  72. public void setId(String id) {
  73. this.id = id;
  74. }
  75. public String getTravelPlanId() {
  76. return travelPlanId;
  77. }
  78. public void setTravelPlanId(String travelPlanId) {
  79. this.travelPlanId = travelPlanId;
  80. }
  81. public String getTravelPlanTitle() {
  82. return travelPlanTitle;
  83. }
  84. public void setTravelPlanTitle(String travelPlanTitle) {
  85. this.travelPlanTitle = travelPlanTitle;
  86. }
  87. public String getPersId() {
  88. return persId;
  89. }
  90. public void setPersId(String persId) {
  91. this.persId = persId;
  92. }
  93. public String getPersName() {
  94. return persName;
  95. }
  96. public void setPersName(String persName) {
  97. this.persName = persName;
  98. }
  99. public String getAcptPersId() {
  100. return acptPersId;
  101. }
  102. public void setAcptPersId(String acptPersId) {
  103. this.acptPersId = acptPersId;
  104. }
  105. public String getAcptPersName() {
  106. return acptPersName;
  107. }
  108. public void setAcptPersName(String acptPersName) {
  109. this.acptPersName = acptPersName;
  110. }
  111. public Date getIntm() {
  112. return intm;
  113. }
  114. public void setIntm(Date intm) {
  115. this.intm = intm;
  116. }
  117. public Date getUptm() {
  118. return uptm;
  119. }
  120. public void setUptm(Date uptm) {
  121. this.uptm = uptm;
  122. }
  123. public String getDataStat() {
  124. return dataStat;
  125. }
  126. public void setDataStat(String dataStat) {
  127. this.dataStat = dataStat;
  128. }
  129. public Date getSttm() {
  130. return sttm;
  131. }
  132. public void setSttm(Date sttm) {
  133. this.sttm = sttm;
  134. }
  135. public Date getEntm() {
  136. return entm;
  137. }
  138. public void setEntm(Date entm) {
  139. this.entm = entm;
  140. }
  141. public Integer getDayCount() {
  142. return dayCount;
  143. }
  144. public void setDayCount(Integer dayCount) {
  145. this.dayCount = dayCount;
  146. }
  147. public String getPass() {
  148. return pass;
  149. }
  150. public void setPass(String pass) {
  151. this.pass = pass;
  152. }
  153. }