1a40faf845143c494dd26c47d9691276ee4d6b3b.svn-base 3.4 KB

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