450b6eefbff16c652bf9b017472c0be4b1bf53d4.svn-base 5.8 KB

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