36a2d3c09928d7a91181f29c9751793ed5d8105f.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package cn.com.goldenwater.dcproj.dto;
  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:BisInspDvdwk
  9. *
  10. * @author lhc
  11. * @date 2019-4-30
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspDvdwkDto extends BaseBean implements Serializable {
  15. // 主键
  16. @ApiModelProperty(value = "主键有默认值,不用传", name = "dvdwkId")
  17. private String dvdwkId;
  18. @ApiModelProperty(value = "督查通知ID", name = "schmId")
  19. private String schmId;
  20. @ApiModelProperty(value = "制作机构ID(暂时未用)", name = "guid")
  21. private String guid;
  22. // 机构id
  23. @ApiModelProperty(value = "机构id", name = "orgDp")
  24. private String orgDp;
  25. // 机构名称
  26. @ApiModelProperty(value = "机构名称", name = "orgName")
  27. private String orgName;
  28. // 督查类型(1:小水库、2:农饮、3:水毁)
  29. @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype")
  30. private String dtype;
  31. // 内容
  32. @ApiModelProperty(value = "内容", name = "content")
  33. private String content;
  34. // 录入时间
  35. @ApiModelProperty(value = "录入时间", name = "intm")
  36. private Date intm;
  37. // 修改时间
  38. @ApiModelProperty(value = "修改时间", name = "uptm")
  39. private Date uptm;
  40. // 督查对象总数
  41. @ApiModelProperty(value = "督查对象总数", name = "inspNum")
  42. private Double inspNum;
  43. // 行政区编码
  44. @ApiModelProperty(value = "行政区编码", name = "adCode")
  45. private String adCode;
  46. // 行政区名称
  47. @ApiModelProperty(value = "行政区名称", name = "adName")
  48. private String adName;
  49. // 基础数据总数
  50. @ApiModelProperty(value = "基础数据总数", name = "inspCount")
  51. private Double inspCount;
  52. // 督查对象占比
  53. @ApiModelProperty(value = "督查对象占比", name = "inspScale")
  54. private Double inspScale;
  55. public BisInspDvdwkDto() {
  56. }
  57. public String getDvdwkId() {
  58. return dvdwkId;
  59. }
  60. public void setDvdwkId(String dvdwkId) {
  61. this.dvdwkId = dvdwkId;
  62. }
  63. public String getSchmId() {
  64. return schmId;
  65. }
  66. public void setSchmId(String schmId) {
  67. this.schmId = schmId;
  68. }
  69. public String getGuid() {
  70. return guid;
  71. }
  72. public void setGuid(String guid) {
  73. this.guid = guid;
  74. }
  75. public String getOrgDp() {
  76. return orgDp;
  77. }
  78. public void setOrgDp(String orgDp) {
  79. this.orgDp = orgDp;
  80. }
  81. public String getDtype() {
  82. return dtype;
  83. }
  84. public void setDtype(String dtype) {
  85. this.dtype = dtype;
  86. }
  87. public String getContent() {
  88. return content;
  89. }
  90. public void setContent(String content) {
  91. this.content = content;
  92. }
  93. public Date getIntm() {
  94. return intm;
  95. }
  96. public void setIntm(Date intm) {
  97. this.intm = intm;
  98. }
  99. public Date getUptm() {
  100. return uptm;
  101. }
  102. public void setUptm(Date uptm) {
  103. this.uptm = uptm;
  104. }
  105. public Double getInspNum() {
  106. return inspNum;
  107. }
  108. public void setInspNum(Double inspNum) {
  109. this.inspNum = inspNum;
  110. }
  111. public String getAdCode() {
  112. return adCode;
  113. }
  114. public void setAdCode(String adCode) {
  115. this.adCode = adCode;
  116. }
  117. public String getAdName() {
  118. return adName;
  119. }
  120. public void setAdName(String adName) {
  121. this.adName = adName;
  122. }
  123. public String getOrgName() {
  124. return orgName;
  125. }
  126. public void setOrgName(String orgName) {
  127. this.orgName = orgName;
  128. }
  129. public Double getInspCount() {
  130. return inspCount;
  131. }
  132. public void setInspCount(Double inspCount) {
  133. this.inspCount = inspCount;
  134. }
  135. public Double getInspScale() {
  136. return inspScale;
  137. }
  138. public void setInspScale(Double inspScale) {
  139. this.inspScale = inspScale;
  140. }
  141. @Override
  142. public String toString() {
  143. return "BisInspDvdwkDto{" +
  144. "dvdwkId='" + dvdwkId + '\'' +
  145. ", schmId='" + schmId + '\'' +
  146. ", guid='" + guid + '\'' +
  147. ", orgDp='" + orgDp + '\'' +
  148. ", orgName='" + orgName + '\'' +
  149. ", dtype='" + dtype + '\'' +
  150. ", content='" + content + '\'' +
  151. ", intm=" + intm +
  152. ", uptm=" + uptm +
  153. ", inspNum=" + inspNum +
  154. ", adCode='" + adCode + '\'' +
  155. ", adName='" + adName + '\'' +
  156. ", inspCount=" + inspCount +
  157. ", inspScale=" + inspScale +
  158. '}';
  159. }
  160. }