7644fcb032629651e874a05b759be3448e9d7969.svn-base 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import java.io.Serializable;
  4. /**
  5. * Created by 61618 on 2019/3/4.
  6. */
  7. public class DvdwkParam extends PageParam implements Serializable {
  8. private String dvdwkId;
  9. private String schmId;
  10. private String guid;
  11. private String orgDp;
  12. private String dtype;
  13. private String content;
  14. private String intm;
  15. private String uptm;
  16. private String sendState;
  17. private Long inspNum;
  18. private String adCode;
  19. private String adName;
  20. private String orgName;
  21. private Long inspCount;
  22. private Double inspScale;
  23. public String getDvdwkId() {
  24. return dvdwkId;
  25. }
  26. public void setDvdwkId(String dvdwkId) {
  27. this.dvdwkId = dvdwkId;
  28. }
  29. public String getSchmId() {
  30. return schmId;
  31. }
  32. public void setSchmId(String schmId) {
  33. this.schmId = schmId;
  34. }
  35. public String getGuid() {
  36. return guid;
  37. }
  38. public void setGuid(String guid) {
  39. this.guid = guid;
  40. }
  41. public String getOrgDp() {
  42. return orgDp;
  43. }
  44. public void setOrgDp(String orgDp) {
  45. this.orgDp = orgDp;
  46. }
  47. public String getDtype() {
  48. return dtype;
  49. }
  50. public void setDtype(String dtype) {
  51. this.dtype = dtype;
  52. }
  53. public String getContent() {
  54. return content;
  55. }
  56. public void setContent(String content) {
  57. this.content = content;
  58. }
  59. public String getIntm() {
  60. return intm;
  61. }
  62. public void setIntm(String intm) {
  63. this.intm = intm;
  64. }
  65. public String getUptm() {
  66. return uptm;
  67. }
  68. public void setUptm(String uptm) {
  69. this.uptm = uptm;
  70. }
  71. public String getSendState() {
  72. return sendState;
  73. }
  74. public void setSendState(String sendState) {
  75. this.sendState = sendState;
  76. }
  77. public Long getInspNum() {
  78. return inspNum;
  79. }
  80. public void setInspNum(Long inspNum) {
  81. this.inspNum = inspNum;
  82. }
  83. public String getAdCode() {
  84. return adCode;
  85. }
  86. public void setAdCode(String adCode) {
  87. this.adCode = adCode;
  88. }
  89. public String getAdName() {
  90. return adName;
  91. }
  92. public void setAdName(String adName) {
  93. this.adName = adName;
  94. }
  95. public String getOrgName() {
  96. return orgName;
  97. }
  98. public void setOrgName(String orgName) {
  99. this.orgName = orgName;
  100. }
  101. public Long getInspCount() {
  102. return inspCount;
  103. }
  104. public void setInspCount(Long inspCount) {
  105. this.inspCount = inspCount;
  106. }
  107. public Double getInspScale() {
  108. return inspScale;
  109. }
  110. public void setInspScale(Double inspScale) {
  111. this.inspScale = inspScale;
  112. }
  113. @Override
  114. public String toString() {
  115. return "DvdwkParam{" +
  116. "dvdwkId='" + dvdwkId + '\'' +
  117. ", schmId='" + schmId + '\'' +
  118. ", guid='" + guid + '\'' +
  119. ", orgDp='" + orgDp + '\'' +
  120. ", dtype='" + dtype + '\'' +
  121. ", content='" + content + '\'' +
  122. ", intm='" + intm + '\'' +
  123. ", uptm='" + uptm + '\'' +
  124. ", sendState='" + sendState + '\'' +
  125. ", inspNum=" + inspNum +
  126. ", adCode='" + adCode + '\'' +
  127. ", adName='" + adName + '\'' +
  128. ", orgName='" + orgName + '\'' +
  129. ", inspCount=" + inspCount +
  130. ", inspScale=" + inspScale +
  131. '}';
  132. }
  133. }