9b456b66595b151e96c8bd60ea0190ad63cb8def.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. * BisInspTravelPlanParam
  9. *
  10. * @author lhc
  11. * @date 2019-9-17
  12. */
  13. public class BisInspTravelPlanParam extends PageParam implements Serializable {
  14. private String id;
  15. // 行程标题
  16. @ApiParam(name = "行程标题")
  17. @ApiModelProperty(value = "行程标题", name = "title")
  18. private String title;
  19. // 行程开始时间
  20. @ApiParam(name = "行程开始时间")
  21. @ApiModelProperty(value = "行程开始时间", name = "sttm")
  22. private Date sttm;
  23. // 行程结束时间
  24. @ApiParam(name = "行程结束时间")
  25. @ApiModelProperty(value = "行程结束时间", name = "entm")
  26. private Date entm;
  27. // 规划行程天数
  28. @ApiParam(name = "规划行程天数")
  29. @ApiModelProperty(value = "规划行程天数", name = "dayCount")
  30. private Long dayCount;
  31. // 行程经过城市
  32. @ApiParam(name = "行程经过城市")
  33. @ApiModelProperty(value = "行程经过城市", name = "pass")
  34. private String pass;
  35. // 创建人
  36. @ApiParam(name = "创建人")
  37. @ApiModelProperty(value = "创建人", name = "persId")
  38. private String persId;
  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. // 是否收藏 0 未收藏 1 收藏
  52. @ApiModelProperty(value = "是否收藏 0 未收藏 1 收藏", name = "isCollect")
  53. private String isCollect;
  54. // 督查组名称
  55. @ApiModelProperty(value = "督查组名称", name = "planNm")
  56. private String planNm;
  57. // 督查组ID
  58. @ApiModelProperty(value = "督查组ID", name = "planId")
  59. private String planId;
  60. public BisInspTravelPlanParam() {
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getTitle() {
  69. return title;
  70. }
  71. public void setTitle(String title) {
  72. this.title = title;
  73. }
  74. public Date getSttm() {
  75. return sttm;
  76. }
  77. public void setSttm(Date sttm) {
  78. this.sttm = sttm;
  79. }
  80. public Date getEntm() {
  81. return entm;
  82. }
  83. public void setEntm(Date entm) {
  84. this.entm = entm;
  85. }
  86. public Long getDayCount() {
  87. return dayCount;
  88. }
  89. public void setDayCount(Long dayCount) {
  90. this.dayCount = dayCount;
  91. }
  92. public String getPass() {
  93. return pass;
  94. }
  95. public void setPass(String pass) {
  96. this.pass = pass;
  97. }
  98. public String getPlanNm() {
  99. return planNm;
  100. }
  101. public void setPlanNm(String planNm) {
  102. this.planNm = planNm;
  103. }
  104. public String getPlanId() {
  105. return planId;
  106. }
  107. public void setPlanId(String planId) {
  108. this.planId = planId;
  109. }
  110. public Date getIntm() {
  111. return intm;
  112. }
  113. public void setIntm(Date intm) {
  114. this.intm = intm;
  115. }
  116. public Date getUptm() {
  117. return uptm;
  118. }
  119. public void setUptm(Date uptm) {
  120. this.uptm = uptm;
  121. }
  122. public String getDataStat() {
  123. return dataStat;
  124. }
  125. public void setDataStat(String dataStat) {
  126. this.dataStat = dataStat;
  127. }
  128. public String getPersId() {
  129. return persId;
  130. }
  131. public void setPersId(String persId) {
  132. this.persId = persId;
  133. }
  134. public String getIsCollect() {
  135. return isCollect;
  136. }
  137. public void setIsCollect(String isCollect) {
  138. this.isCollect = isCollect;
  139. }
  140. }