package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:BisInspRectLog * * @author lhc * @date 2019-12-25 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspRectLog extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 整改通知ID @ApiModelProperty(value = "整改通知ID", name = "rectId") private String rectId; // 操作描述 @ApiModelProperty(value = "操作描述", name = "actionDes") private String actionDes; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 单位代码 @ApiModelProperty(value = "单位代码", name = "orgId") private String orgId; // 单位名称 @ApiModelProperty(value = "单位名称", name = "orgName") private String orgName; // 创建人 @ApiModelProperty(value = "创建人", name = "persId") private String persId; // 创建人姓名 @ApiModelProperty(value = "创建人姓名", name = "persName") private String persName; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; public BisInspRectLog() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRectId() { return rectId; } public void setRectId(String rectId) { this.rectId = rectId; } public String getActionDes() { return actionDes; } public void setActionDes(String actionDes) { this.actionDes = actionDes; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } @Override public String getOrgId() { return orgId; } @Override public void setOrgId(String orgId) { this.orgId = orgId; } public String getOrgName() { return orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getPersName() { return persName; } public void setPersName(String persName) { this.persName = persName; } 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 "BisInspRectLog [" + "id=" + id + ", rectId=" + rectId + ", actionDes=" + actionDes + ", note=" + note + ", orgId=" + orgId + ", orgName=" + orgName + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }