f0ec99d9b08987d86a6814c67e7941cb2b56f238.svn-base 4.5 KB

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