bf9785cbb0261ff73a9be715d2a726902fe68c0a.svn-base 4.3 KB

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