b15048d2cbe67178d8761a4db8e2fc5148604988.svn-base 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisInspAllParam
  8. *
  9. * @author lune
  10. * @date 2019-2-23
  11. */
  12. public class BisInspAllParam extends PageParam implements Serializable {
  13. private String id;
  14. private String pid;
  15. private String pnm;
  16. private Date sttm;
  17. private Date entm;
  18. private String inspYear;
  19. private String inspMnth;
  20. private String persId;
  21. private String nm;
  22. @ApiModelProperty(value = "检查模式 1自查 2抽查(新增)", name = "chkType")
  23. private String chkType;
  24. // 牵头单位(新增)
  25. @ApiModelProperty(value = "牵头单位(新增)", name = "leadDep")
  26. private String leadDep;
  27. // 检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他
  28. @ApiModelProperty(value = "检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他", name = "chkForm")
  29. private String chkForm;
  30. // 年度任务ID(新增)
  31. @ApiModelProperty(value = "年度任务ID(新增)", name = "yearTaskId")
  32. private String yearTaskId;
  33. private String isPlan;
  34. @ApiModelProperty("计划检查项目数量")
  35. private Long quantity;
  36. private String planDpId;
  37. private String note;
  38. public BisInspAllParam() {
  39. }
  40. public String getPersId() {
  41. return persId;
  42. }
  43. public void setPersId(String persId) {
  44. this.persId = persId;
  45. }
  46. public String getNm() {
  47. return nm;
  48. }
  49. public void setNm(String nm) {
  50. this.nm = nm;
  51. }
  52. public String getInspYear() {
  53. return inspYear;
  54. }
  55. public void setInspYear(String inspYear) {
  56. this.inspYear = inspYear;
  57. }
  58. public String getInspMnth() {
  59. return inspMnth;
  60. }
  61. public void setInspMnth(String inspMnth) {
  62. this.inspMnth = inspMnth;
  63. }
  64. public String getId() {
  65. return id;
  66. }
  67. public void setId(String id) {
  68. this.id = id;
  69. }
  70. public String getPid() {
  71. return pid;
  72. }
  73. public void setPid(String pid) {
  74. this.pid = pid;
  75. }
  76. public String getPnm() {
  77. return pnm;
  78. }
  79. public void setPnm(String pnm) {
  80. this.pnm = pnm;
  81. }
  82. public Date getSttm() {
  83. return sttm;
  84. }
  85. public void setSttm(Date sttm) {
  86. this.sttm = sttm;
  87. }
  88. public Date getEntm() {
  89. return entm;
  90. }
  91. public void setEntm(Date entm) {
  92. this.entm = entm;
  93. }
  94. public String getChkType() {
  95. return chkType;
  96. }
  97. public void setChkType(String chkType) {
  98. this.chkType = chkType;
  99. }
  100. public String getLeadDep() {
  101. return leadDep;
  102. }
  103. public void setLeadDep(String leadDep) {
  104. this.leadDep = leadDep;
  105. }
  106. public String getChkForm() {
  107. return chkForm;
  108. }
  109. public void setChkForm(String chkForm) {
  110. this.chkForm = chkForm;
  111. }
  112. public String getYearTaskId() {
  113. return yearTaskId;
  114. }
  115. public void setYearTaskId(String yearTaskId) {
  116. this.yearTaskId = yearTaskId;
  117. }
  118. public String getIsPlan() {
  119. return isPlan;
  120. }
  121. public void setIsPlan(String isPlan) {
  122. this.isPlan = isPlan;
  123. }
  124. public Long getQuantity() {
  125. return quantity;
  126. }
  127. public void setQuantity(Long quantity) {
  128. this.quantity = quantity;
  129. }
  130. public String getPlanDpId() {
  131. return planDpId;
  132. }
  133. public void setPlanDpId(String planDpId) {
  134. this.planDpId = planDpId;
  135. }
  136. public String getNote() {
  137. return note;
  138. }
  139. public void setNote(String note) {
  140. this.note = note;
  141. }
  142. }