| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacPawpBstocmPlprsParam
- *
- * @author lune
- * @date 2019-6-19
- */
- public class TacPawpBstocmPlprsParam extends PageParam 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("开工日期")
- 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;
- public TacPawpBstocmPlprsParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- 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;
- }
- }
|