6569e416697d34135cc8e685cc988c82d252b74f.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. * TacPawpBstocmPlprsParam
  8. *
  9. * @author lune
  10. * @date 2019-6-19
  11. */
  12. public class TacPawpBstocmPlprsParam extends PageParam implements Serializable {
  13. @ApiModelProperty("主键ID")
  14. private String id;
  15. @ApiModelProperty("登记表ID")
  16. private String rgstrId;
  17. @ApiModelProperty("单位名称")
  18. private String unitName;
  19. @ApiModelProperty("法定代表人")
  20. private String legalName;
  21. @ApiModelProperty("技术负责人")
  22. private String techLead;
  23. @ApiModelProperty("是否备案(1:是;2:否)")
  24. private String isPor;
  25. @ApiModelProperty("是否明确内设机构及人员职责(1:是;2:否)")
  26. private String isClearIoapr;
  27. @ApiModelProperty("主要管理制度制定情况(1:齐全;2:基本齐全;3:不齐)")
  28. private String domms;
  29. @ApiModelProperty("质量监督手续是否办理(1:是;2:否)")
  30. private String isHandQcp;
  31. @ApiModelProperty("开工备案手续是否办理(1:是;2:否)")
  32. private String isHandFpfc;
  33. @ApiModelProperty("度汛方案并备案是否制定(1:是;2:否)")
  34. private String isSetPapor;
  35. @ApiModelProperty("开工情况是否开工(1:是;2:否)")
  36. private String isStart;
  37. @ApiModelProperty("开工日期")
  38. private Date stTm;
  39. @ApiModelProperty("其他说明")
  40. private String remark;
  41. @ApiModelProperty("备注")
  42. private String note;
  43. @ApiModelProperty("记录人员ID")
  44. private String persId;
  45. @ApiModelProperty("创建时间")
  46. private Date intm;
  47. @ApiModelProperty("修改时间")
  48. private Date uptm;
  49. @ApiModelProperty("数据状态(0:正常;9:删除)")
  50. private String dataStat;
  51. public TacPawpBstocmPlprsParam() {
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getRgstrId() {
  60. return rgstrId;
  61. }
  62. public void setRgstrId(String rgstrId) {
  63. this.rgstrId = rgstrId;
  64. }
  65. public String getUnitName() {
  66. return unitName;
  67. }
  68. public void setUnitName(String unitName) {
  69. this.unitName = unitName;
  70. }
  71. public String getLegalName() {
  72. return legalName;
  73. }
  74. public void setLegalName(String legalName) {
  75. this.legalName = legalName;
  76. }
  77. public String getTechLead() {
  78. return techLead;
  79. }
  80. public void setTechLead(String techLead) {
  81. this.techLead = techLead;
  82. }
  83. public String getIsPor() {
  84. return isPor;
  85. }
  86. public void setIsPor(String isPor) {
  87. this.isPor = isPor;
  88. }
  89. public String getIsClearIoapr() {
  90. return isClearIoapr;
  91. }
  92. public void setIsClearIoapr(String isClearIoapr) {
  93. this.isClearIoapr = isClearIoapr;
  94. }
  95. public String getDomms() {
  96. return domms;
  97. }
  98. public void setDomms(String domms) {
  99. this.domms = domms;
  100. }
  101. public String getIsHandQcp() {
  102. return isHandQcp;
  103. }
  104. public void setIsHandQcp(String isHandQcp) {
  105. this.isHandQcp = isHandQcp;
  106. }
  107. public String getIsHandFpfc() {
  108. return isHandFpfc;
  109. }
  110. public void setIsHandFpfc(String isHandFpfc) {
  111. this.isHandFpfc = isHandFpfc;
  112. }
  113. public String getIsSetPapor() {
  114. return isSetPapor;
  115. }
  116. public void setIsSetPapor(String isSetPapor) {
  117. this.isSetPapor = isSetPapor;
  118. }
  119. public String getIsStart() {
  120. return isStart;
  121. }
  122. public void setIsStart(String isStart) {
  123. this.isStart = isStart;
  124. }
  125. public Date getStTm() {
  126. return stTm;
  127. }
  128. public void setStTm(Date stTm) {
  129. this.stTm = stTm;
  130. }
  131. public String getRemark() {
  132. return remark;
  133. }
  134. public void setRemark(String remark) {
  135. this.remark = remark;
  136. }
  137. public String getNote() {
  138. return note;
  139. }
  140. public void setNote(String note) {
  141. this.note = note;
  142. }
  143. public String getPersId() {
  144. return persId;
  145. }
  146. public void setPersId(String persId) {
  147. this.persId = persId;
  148. }
  149. public Date getIntm() {
  150. return intm;
  151. }
  152. public void setIntm(Date intm) {
  153. this.intm = intm;
  154. }
  155. public Date getUptm() {
  156. return uptm;
  157. }
  158. public void setUptm(Date uptm) {
  159. this.uptm = uptm;
  160. }
  161. public String getDataStat() {
  162. return dataStat;
  163. }
  164. public void setDataStat(String dataStat) {
  165. this.dataStat = dataStat;
  166. }
  167. }