0633596242bc9a4214e0dc3c336f906b0b1cc609.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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:TacInspYearBatchGroupMeg
  9. *
  10. * @author lune
  11. * @date 2019-12-20
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class TacInspYearBatchGroupMeg extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键ID")
  16. private String id;
  17. @ApiModelProperty("稽察年度批次ID")
  18. private String yearBatchId;
  19. @ApiModelProperty("年度")
  20. private Long year;
  21. @ApiModelProperty("批次")
  22. private Long batch;
  23. @ApiModelProperty("督查组ID")
  24. private String groupId;
  25. @ApiModelProperty("督查组组别")
  26. private Long groupNm;
  27. @ApiModelProperty("专家id")
  28. private String exptId;
  29. @ApiModelProperty("专家名称")
  30. private String exptNm;
  31. @ApiModelProperty("专家手机号")
  32. private String exptPhone;
  33. @ApiModelProperty("稽察地点")
  34. private String noticeInfo;
  35. @ApiModelProperty("助理id")
  36. private String assId;
  37. @ApiModelProperty("助理姓名")
  38. private String assNm;
  39. @ApiModelProperty("助理手机号")
  40. private String assPhone;
  41. @ApiModelProperty("发送人id")
  42. private String sdPersId;
  43. @ApiModelProperty("发送时间")
  44. private Date sdTm;
  45. @ApiModelProperty("发送状态(1:成功;2:失败)")
  46. private String sdState;
  47. @ApiModelProperty("创建时间")
  48. private Date inTm;
  49. @ApiModelProperty("修改时间")
  50. private Date upTm;
  51. @ApiModelProperty("查看状态,0未查看,1已查看")
  52. private String dataStat;
  53. @ApiModelProperty("稽察开始时间")
  54. private String sttm;
  55. @ApiModelProperty("稽察结束时间")
  56. private String entm;
  57. public TacInspYearBatchGroupMeg() {
  58. }
  59. public String getSttm() {
  60. return sttm;
  61. }
  62. public void setSttm(String sttm) {
  63. this.sttm = sttm;
  64. }
  65. public String getEntm() {
  66. return entm;
  67. }
  68. public void setEntm(String entm) {
  69. this.entm = entm;
  70. }
  71. public String getDataStat() {
  72. return dataStat;
  73. }
  74. public void setDataStat(String dataStat) {
  75. this.dataStat = dataStat;
  76. }
  77. public String getId() {
  78. return id;
  79. }
  80. public void setId(String id) {
  81. this.id = id;
  82. }
  83. public String getYearBatchId() {
  84. return yearBatchId;
  85. }
  86. public void setYearBatchId(String yearBatchId) {
  87. this.yearBatchId = yearBatchId;
  88. }
  89. public Long getYear() {
  90. return year;
  91. }
  92. public void setYear(Long year) {
  93. this.year = year;
  94. }
  95. public Long getBatch() {
  96. return batch;
  97. }
  98. public void setBatch(Long batch) {
  99. this.batch = batch;
  100. }
  101. @Override
  102. public String getGroupId() {
  103. return groupId;
  104. }
  105. @Override
  106. public void setGroupId(String groupId) {
  107. this.groupId = groupId;
  108. }
  109. public Long getGroupNm() {
  110. return groupNm;
  111. }
  112. public void setGroupNm(Long groupNm) {
  113. this.groupNm = groupNm;
  114. }
  115. public String getExptId() {
  116. return exptId;
  117. }
  118. public void setExptId(String exptId) {
  119. this.exptId = exptId;
  120. }
  121. public String getExptNm() {
  122. return exptNm;
  123. }
  124. public void setExptNm(String exptNm) {
  125. this.exptNm = exptNm;
  126. }
  127. public String getExptPhone() {
  128. return exptPhone;
  129. }
  130. public void setExptPhone(String exptPhone) {
  131. this.exptPhone = exptPhone;
  132. }
  133. public String getNoticeInfo() {
  134. return noticeInfo;
  135. }
  136. public void setNoticeInfo(String noticeInfo) {
  137. this.noticeInfo = noticeInfo;
  138. }
  139. public String getAssId() {
  140. return assId;
  141. }
  142. public void setAssId(String assId) {
  143. this.assId = assId;
  144. }
  145. public String getAssNm() {
  146. return assNm;
  147. }
  148. public void setAssNm(String assNm) {
  149. this.assNm = assNm;
  150. }
  151. public String getAssPhone() {
  152. return assPhone;
  153. }
  154. public void setAssPhone(String assPhone) {
  155. this.assPhone = assPhone;
  156. }
  157. public String getSdPersId() {
  158. return sdPersId;
  159. }
  160. public void setSdPersId(String sdPersId) {
  161. this.sdPersId = sdPersId;
  162. }
  163. public Date getSdTm() {
  164. return sdTm;
  165. }
  166. public void setSdTm(Date sdTm) {
  167. this.sdTm = sdTm;
  168. }
  169. public String getSdState() {
  170. return sdState;
  171. }
  172. public void setSdState(String sdState) {
  173. this.sdState = sdState;
  174. }
  175. public Date getInTm() {
  176. return inTm;
  177. }
  178. public void setInTm(Date inTm) {
  179. this.inTm = inTm;
  180. }
  181. public Date getUpTm() {
  182. return upTm;
  183. }
  184. public void setUpTm(Date upTm) {
  185. this.upTm = upTm;
  186. }
  187. @Override
  188. public String toString() {
  189. return "TacInspYearBatchGroupMeg [" + "id=" + id + ", yearBatchId=" + yearBatchId + ", year=" + year + ", batch=" + batch + ", groupId=" + groupId + ", groupNm=" + groupNm + ", exptId=" + exptId + ", exptNm=" + exptNm + ", exptPhone=" + exptPhone + ", noticeInfo=" + noticeInfo + ", assId=" + assId + ", assNm=" + assNm + ", assPhone=" + assPhone + ", sdPersId=" + sdPersId + ", sdTm=" + sdTm + ", sdState=" + sdState + ", inTm=" + inTm + ", upTm=" + upTm + "]";
  190. }
  191. }