0f3b1539606f91cd442fa691d2ea3e197092e4a4.svn-base 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.util.Date;
  4. /**
  5. * Created by 61618 on 2019/5/29.
  6. */
  7. public class NtfctnDvdwkDto {
  8. private String id;
  9. // 督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸
  10. @ApiModelProperty(value = "督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸", name = "inspType")
  11. private String inspType;
  12. // 计划名称
  13. @ApiModelProperty(value = "计划名称", name = "plnNm")
  14. private String plnNm;
  15. // 年度
  16. @ApiModelProperty(value = "年度", name = "planYr")
  17. private Long planYr;
  18. // 公文号
  19. @ApiModelProperty(value = "公文号", name = "planNo")
  20. private String planNo;
  21. // 下发单位编码
  22. @ApiModelProperty(value = "下发单位编码", name = "orgId")
  23. private String orgId;
  24. // 发文单位
  25. @ApiModelProperty(value = "发文单位", name = "planUnt")
  26. private String planUnt;
  27. // 发文时间
  28. @ApiModelProperty(value = "发文时间", name = "intm")
  29. private Date intm;
  30. // 下发状态
  31. @ApiModelProperty(value = "下发状态", name = "planUnt")
  32. private String sendState;
  33. // 督查内容简述
  34. @ApiModelProperty(value = "督查内容简述", name = "planCnt")
  35. private String planCnt;
  36. // 车辆安排简述
  37. @ApiModelProperty(value = "车辆安排简述", name = "planCar")
  38. private String planCar;
  39. // 发文人ID
  40. @ApiModelProperty(value = "发文人ID", name = "pesrid")
  41. private String pesrid;
  42. @ApiModelProperty(value = "人员名称", name = "persName")
  43. private String persName;// PERS_NAME;
  44. @ApiModelProperty(value = "单位名称", name = "orgNm")
  45. private String orgNm;// ORG_NM;
  46. // 主键
  47. @ApiModelProperty(value = "主键有默认值,不用传", name = "dvdwkId")
  48. private String dvdwkId;
  49. @ApiModelProperty(value = "制作机构ID(暂时未用)", name = "guid")
  50. private String guid;
  51. // 机构id
  52. @ApiModelProperty(value = "机构id", name = "orgDp")
  53. private String orgDp;
  54. // 机构名称
  55. @ApiModelProperty(value = "机构名称", name = "orgName")
  56. private String orgName;
  57. // 督查类型(1:小水库、2:农饮、3:水毁)
  58. @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype")
  59. private String dtype;
  60. // 内容
  61. @ApiModelProperty(value = "内容", name = "content")
  62. private String content;
  63. // 督查对象总数
  64. @ApiModelProperty(value = "督查对象总数", name = "inspNum")
  65. private Double inspNum;
  66. // 行政区编码
  67. @ApiModelProperty(value = "行政区编码", name = "adCode")
  68. private String adCode;
  69. // 行政区名称
  70. @ApiModelProperty(value = "行政区名称", name = "adName")
  71. private String adName;
  72. // 基础数据总数
  73. @ApiModelProperty(value = "基础数据总数", name = "inspCount")
  74. private Double inspCount;
  75. // 督查对象占比
  76. @ApiModelProperty(value = "督查对象占比", name = "inspScale")
  77. private Double inspScale;
  78. public String getId() {
  79. return id;
  80. }
  81. public void setId(String id) {
  82. this.id = id;
  83. }
  84. public String getInspType() {
  85. return inspType;
  86. }
  87. public void setInspType(String inspType) {
  88. this.inspType = inspType;
  89. }
  90. public String getPlnNm() {
  91. return plnNm;
  92. }
  93. public void setPlnNm(String plnNm) {
  94. this.plnNm = plnNm;
  95. }
  96. public Long getPlanYr() {
  97. return planYr;
  98. }
  99. public void setPlanYr(Long planYr) {
  100. this.planYr = planYr;
  101. }
  102. public String getPlanNo() {
  103. return planNo;
  104. }
  105. public void setPlanNo(String planNo) {
  106. this.planNo = planNo;
  107. }
  108. public String getOrgId() {
  109. return orgId;
  110. }
  111. public void setOrgId(String orgId) {
  112. this.orgId = orgId;
  113. }
  114. public String getPlanUnt() {
  115. return planUnt;
  116. }
  117. public void setPlanUnt(String planUnt) {
  118. this.planUnt = planUnt;
  119. }
  120. public Date getIntm() {
  121. return intm;
  122. }
  123. public void setIntm(Date intm) {
  124. this.intm = intm;
  125. }
  126. public String getSendState() {
  127. return sendState;
  128. }
  129. public void setSendState(String sendState) {
  130. this.sendState = sendState;
  131. }
  132. public String getPlanCnt() {
  133. return planCnt;
  134. }
  135. public void setPlanCnt(String planCnt) {
  136. this.planCnt = planCnt;
  137. }
  138. public String getPlanCar() {
  139. return planCar;
  140. }
  141. public void setPlanCar(String planCar) {
  142. this.planCar = planCar;
  143. }
  144. public String getPesrid() {
  145. return pesrid;
  146. }
  147. public void setPesrid(String pesrid) {
  148. this.pesrid = pesrid;
  149. }
  150. public String getPersName() {
  151. return persName;
  152. }
  153. public void setPersName(String persName) {
  154. this.persName = persName;
  155. }
  156. public String getOrgNm() {
  157. return orgNm;
  158. }
  159. public void setOrgNm(String orgNm) {
  160. this.orgNm = orgNm;
  161. }
  162. public String getDvdwkId() {
  163. return dvdwkId;
  164. }
  165. public void setDvdwkId(String dvdwkId) {
  166. this.dvdwkId = dvdwkId;
  167. }
  168. public String getGuid() {
  169. return guid;
  170. }
  171. public void setGuid(String guid) {
  172. this.guid = guid;
  173. }
  174. public String getOrgDp() {
  175. return orgDp;
  176. }
  177. public void setOrgDp(String orgDp) {
  178. this.orgDp = orgDp;
  179. }
  180. public String getOrgName() {
  181. return orgName;
  182. }
  183. public void setOrgName(String orgName) {
  184. this.orgName = orgName;
  185. }
  186. public String getDtype() {
  187. return dtype;
  188. }
  189. public void setDtype(String dtype) {
  190. this.dtype = dtype;
  191. }
  192. public String getContent() {
  193. return content;
  194. }
  195. public void setContent(String content) {
  196. this.content = content;
  197. }
  198. public Double getInspNum() {
  199. return inspNum;
  200. }
  201. public void setInspNum(Double inspNum) {
  202. this.inspNum = inspNum;
  203. }
  204. public String getAdCode() {
  205. return adCode;
  206. }
  207. public void setAdCode(String adCode) {
  208. this.adCode = adCode;
  209. }
  210. public String getAdName() {
  211. return adName;
  212. }
  213. public void setAdName(String adName) {
  214. this.adName = adName;
  215. }
  216. public Double getInspCount() {
  217. return inspCount;
  218. }
  219. public void setInspCount(Double inspCount) {
  220. this.inspCount = inspCount;
  221. }
  222. public Double getInspScale() {
  223. return inspScale;
  224. }
  225. public void setInspScale(Double inspScale) {
  226. this.inspScale = inspScale;
  227. }
  228. @Override
  229. public String toString() {
  230. return "NtfctnDvdwkDto{" +
  231. "id='" + id + '\'' +
  232. ", inspType='" + inspType + '\'' +
  233. ", plnNm='" + plnNm + '\'' +
  234. ", planYr=" + planYr +
  235. ", planNo='" + planNo + '\'' +
  236. ", orgId='" + orgId + '\'' +
  237. ", planUnt='" + planUnt + '\'' +
  238. ", intm=" + intm +
  239. ", sendState='" + sendState + '\'' +
  240. ", planCnt='" + planCnt + '\'' +
  241. ", planCar='" + planCar + '\'' +
  242. ", pesrid='" + pesrid + '\'' +
  243. ", persName='" + persName + '\'' +
  244. ", orgNm='" + orgNm + '\'' +
  245. ", dvdwkId='" + dvdwkId + '\'' +
  246. ", guid='" + guid + '\'' +
  247. ", orgDp='" + orgDp + '\'' +
  248. ", orgName='" + orgName + '\'' +
  249. ", dtype='" + dtype + '\'' +
  250. ", content='" + content + '\'' +
  251. ", inspNum=" + inspNum +
  252. ", adCode='" + adCode + '\'' +
  253. ", adName='" + adName + '\'' +
  254. ", inspCount=" + inspCount +
  255. ", inspScale=" + inspScale +
  256. '}';
  257. }
  258. }