5c1ac6972aee1b3fa11792308e802e5cefb9226c.svn-base 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspOtherPblm;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * Created by jinshui on 2019/7/19.
  8. */
  9. public class BisInspOtherPblmDto implements Serializable {
  10. private String num;
  11. private String province;
  12. private String city;
  13. private String country;
  14. private String org;
  15. private String name;
  16. private String type;
  17. private String checkLead;
  18. private String checkMemb;
  19. private String attach;
  20. private String adFullName;
  21. @ApiModelProperty("督查对象组id")
  22. private String groupObjId;
  23. @ApiModelProperty("创建人")
  24. private String persId;
  25. @ApiModelProperty("督查组ID")
  26. private String groupId;
  27. @ApiModelProperty("创建时间")
  28. private Date inTm;
  29. @ApiModelProperty("修改时间")
  30. private Date upTm;
  31. @ApiModelProperty("主键id")
  32. private String id;
  33. @ApiModelProperty("登记表ID")
  34. private String rgstrId;
  35. @ApiModelProperty("责任单位")
  36. private String aUnit;
  37. @ApiModelProperty("问题数量")
  38. private String pblmNum;
  39. @ApiModelProperty("举报调查核实情况(0:不属实;1:部分属实;2:属实)")
  40. private String pblmIsTrue;
  41. @ApiModelProperty("整改情况(0:未整改;1:正在整改;2:已整改)")
  42. private String rectConc;
  43. @ApiModelProperty("整改详细情况")
  44. private String rectMeas;
  45. @ApiModelProperty("发现时间")
  46. private Date fdTm;
  47. @ApiModelProperty("复查组长")
  48. private String rectLead;
  49. @ApiModelProperty("复查组成员")
  50. private String rectMemb;
  51. @ApiModelProperty("复查时间")
  52. private Date rectTm;
  53. @ApiModelProperty("备注")
  54. private String note;
  55. @ApiModelProperty("数据状态(0:正常;9:删除)")
  56. private String dataStat;
  57. private String rectTime;
  58. private String fdTime;
  59. public String getRectTime() {
  60. return rectTime;
  61. }
  62. public void setRectTime(String rectTime) {
  63. this.rectTime = rectTime;
  64. }
  65. public String getFdTime() {
  66. return fdTime;
  67. }
  68. public void setFdTime(String fdTime) {
  69. this.fdTime = fdTime;
  70. }
  71. public String getGroupObjId() {
  72. return groupObjId;
  73. }
  74. public void setGroupObjId(String groupObjId) {
  75. this.groupObjId = groupObjId;
  76. }
  77. public String getAdFullName() {
  78. return adFullName;
  79. }
  80. public void setAdFullName(String adFullName) {
  81. this.adFullName = adFullName;
  82. }
  83. public String getPersId() {
  84. return persId;
  85. }
  86. public void setPersId(String persId) {
  87. this.persId = persId;
  88. }
  89. public String getGroupId() {
  90. return groupId;
  91. }
  92. public void setGroupId(String groupId) {
  93. this.groupId = groupId;
  94. }
  95. public Date getInTm() {
  96. return inTm;
  97. }
  98. public void setInTm(Date inTm) {
  99. this.inTm = inTm;
  100. }
  101. public Date getUpTm() {
  102. return upTm;
  103. }
  104. public void setUpTm(Date upTm) {
  105. this.upTm = upTm;
  106. }
  107. public String getId() {
  108. return id;
  109. }
  110. public void setId(String id) {
  111. this.id = id;
  112. }
  113. public String getRgstrId() {
  114. return rgstrId;
  115. }
  116. public void setRgstrId(String rgstrId) {
  117. this.rgstrId = rgstrId;
  118. }
  119. public String getaUnit() {
  120. return aUnit;
  121. }
  122. public void setaUnit(String aUnit) {
  123. this.aUnit = aUnit;
  124. }
  125. public String getPblmNum() {
  126. return pblmNum;
  127. }
  128. public void setPblmNum(String pblmNum) {
  129. this.pblmNum = pblmNum;
  130. }
  131. public String getPblmIsTrue() {
  132. return pblmIsTrue;
  133. }
  134. public String getAUnit() {
  135. return this.aUnit;
  136. }
  137. public void setAUnit(String aUnit) {
  138. this.aUnit = aUnit;
  139. }
  140. public void setPblmIsTrue(String pblmIsTrue) {
  141. this.pblmIsTrue = pblmIsTrue;
  142. }
  143. public String getRectConc() {
  144. return rectConc;
  145. }
  146. public void setRectConc(String rectConc) {
  147. this.rectConc = rectConc;
  148. }
  149. public String getRectMeas() {
  150. return rectMeas;
  151. }
  152. public void setRectMeas(String rectMeas) {
  153. this.rectMeas = rectMeas;
  154. }
  155. public Date getFdTm() {
  156. return fdTm;
  157. }
  158. public void setFdTm(Date fdTm) {
  159. this.fdTm = fdTm;
  160. }
  161. public String getRectLead() {
  162. return rectLead;
  163. }
  164. public void setRectLead(String rectLead) {
  165. this.rectLead = rectLead;
  166. }
  167. public String getRectMemb() {
  168. return rectMemb;
  169. }
  170. public void setRectMemb(String rectMemb) {
  171. this.rectMemb = rectMemb;
  172. }
  173. public Date getRectTm() {
  174. return rectTm;
  175. }
  176. public void setRectTm(Date rectTm) {
  177. this.rectTm = rectTm;
  178. }
  179. public String getNote() {
  180. return note;
  181. }
  182. public void setNote(String note) {
  183. this.note = note;
  184. }
  185. public String getDataStat() {
  186. return dataStat;
  187. }
  188. public void setDataStat(String dataStat) {
  189. this.dataStat = dataStat;
  190. }
  191. public String getNum() {
  192. return num;
  193. }
  194. public void setNum(String num) {
  195. this.num = num;
  196. }
  197. public String getProvince() {
  198. return province;
  199. }
  200. public void setProvince(String province) {
  201. this.province = province;
  202. }
  203. public String getCity() {
  204. return city;
  205. }
  206. public void setCity(String city) {
  207. this.city = city;
  208. }
  209. public String getCountry() {
  210. return country;
  211. }
  212. public void setCountry(String country) {
  213. this.country = country;
  214. }
  215. public String getOrg() {
  216. return org;
  217. }
  218. public void setOrg(String org) {
  219. this.org = org;
  220. }
  221. public String getName() {
  222. return name;
  223. }
  224. public void setName(String name) {
  225. this.name = name;
  226. }
  227. public String getType() {
  228. return type;
  229. }
  230. public void setType(String type) {
  231. this.type = type;
  232. }
  233. public String getCheckLead() {
  234. return checkLead;
  235. }
  236. public void setCheckLead(String checkLead) {
  237. this.checkLead = checkLead;
  238. }
  239. public String getCheckMemb() {
  240. return checkMemb;
  241. }
  242. public void setCheckMemb(String checkMemb) {
  243. this.checkMemb = checkMemb;
  244. }
  245. public String getAttach() {
  246. return attach;
  247. }
  248. public void setAttach(String attach) {
  249. this.attach = attach;
  250. }
  251. }