| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import cn.com.goldenwater.dcproj.utils.Constant;
- import cn.com.goldenwater.id.util.UuidUtil;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspPlandpRl
- *
- * @author hjp
- * @date 2022-8-9
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspPlandpRl extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- //年度计划ID
- @ApiModelProperty(value = "年度计划ID", name = "planId")
- private String planId;
- //参建单位ID
- @ApiModelProperty(value = "参建单位ID", name = "planId")
- private String planDpId;
- // 阶段
- @ApiModelProperty(value = "阶段 0 年度检查计划 1 年度计划分解 2 详细分组安排", name = "stage")
- private String stage;
- // 创建人
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- public BisInspPlandpRl() {
- }
- public BisInspPlandpRl(String planId, String planDpId, String stage, String persId) {
- this.planId = planId;
- this.planDpId = planDpId;
- this.stage = stage;
- this.persId = persId;
- this.dataStat = Constant.STRING_ZERO;
- this.intm = new Date();
- this.uptm = new Date();
- this.id = UuidUtil.uuid();
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPlanId() {
- return planId;
- }
- public void setPlanId(String planId) {
- this.planId = planId;
- }
- public String getPlanDpId() {
- return planDpId;
- }
- public void setPlanDpId(String planDpId) {
- this.planDpId = planDpId;
- }
- 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;
- }
- public String getStage() {
- return stage;
- }
- public void setStage(String stage) {
- this.stage = stage;
- }
- @Override
- public String toString() {
- return "BisInspPlandpRl [" + "id=" + id + ", planId=" + planId + ", planDpId=" + planDpId + ", stage=" + stage + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|