| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:TacPawpBstocmPlprs
- *
- * @author lune
- * @date 2019-6-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class TacPawpBstocmPlprs extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("登记表ID")
- private String rgstrId;
- @ApiModelProperty("单位名称")
- private String unitName;
- @ApiModelProperty("法定代表人")
- private String legalName;
- @ApiModelProperty("技术负责人")
- private String techLead;
- @ApiModelProperty("是否备案(1:是;2:否)")
- private String isPor;
- @ApiModelProperty("是否明确内设机构及人员职责(1:是;2:否)")
- private String isClearIoapr;
- @ApiModelProperty("主要管理制度制定情况(1:齐全;2:基本齐全;3:不齐)")
- private String domms;
- @ApiModelProperty("质量监督手续是否办理(1:是;2:否)")
- private String isHandQcp;
- @ApiModelProperty("开工备案手续是否办理(1:是;2:否)")
- private String isHandFpfc;
- @ApiModelProperty("度汛方案并备案是否制定(1:是;2:否)")
- private String isSetPapor;
- @ApiModelProperty("开工情况是否开工(1:是;2:否)")
- private String isStart;
- @ApiModelProperty("开工日期")
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- @JsonFormat(pattern = "yyyy-MM-dd")
- private Date stTm;
- @ApiModelProperty("其他说明")
- private String remark;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("记录人员ID")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("建设管理基本情况表-项目法人责任制填报状态(0:未填报;1:填报中;2:已填报)")
- private String bstocmPlprsStat;
- public TacPawpBstocmPlprs() {
- }
- public String getBstocmPlprsStat() {
- return bstocmPlprsStat;
- }
- public void setBstocmPlprsStat(String bstocmPlprsStat) {
- this.bstocmPlprsStat = bstocmPlprsStat;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- public String getLegalName() {
- return legalName;
- }
- public void setLegalName(String legalName) {
- this.legalName = legalName;
- }
- public String getTechLead() {
- return techLead;
- }
- public void setTechLead(String techLead) {
- this.techLead = techLead;
- }
- public String getIsPor() {
- return isPor;
- }
- public void setIsPor(String isPor) {
- this.isPor = isPor;
- }
- public String getIsClearIoapr() {
- return isClearIoapr;
- }
- public void setIsClearIoapr(String isClearIoapr) {
- this.isClearIoapr = isClearIoapr;
- }
- public String getDomms() {
- return domms;
- }
- public void setDomms(String domms) {
- this.domms = domms;
- }
- public String getIsHandQcp() {
- return isHandQcp;
- }
- public void setIsHandQcp(String isHandQcp) {
- this.isHandQcp = isHandQcp;
- }
- public String getIsHandFpfc() {
- return isHandFpfc;
- }
- public void setIsHandFpfc(String isHandFpfc) {
- this.isHandFpfc = isHandFpfc;
- }
- public String getIsSetPapor() {
- return isSetPapor;
- }
- public void setIsSetPapor(String isSetPapor) {
- this.isSetPapor = isSetPapor;
- }
- public String getIsStart() {
- return isStart;
- }
- public void setIsStart(String isStart) {
- this.isStart = isStart;
- }
- public Date getStTm() {
- return stTm;
- }
- public void setStTm(Date stTm) {
- this.stTm = stTm;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- 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 + "]";
- }
- }
|