package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * entity:BisInspEmpwtprj * * @author lune * @date 2019-2-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspEmpwtprj extends BaseBean implements Serializable { private String empwtprjId; private String ptype; private String adCode; private String nm; private String stwktm; private String plantm; private Double estapp; private String visshdu; private String dirunder; private Date intm; private Date uptm; private String note; private Double pjLgtd; private Double pjLttd; private String empwtprjPid; public BisInspEmpwtprj() { } public String getEmpwtprjId() { return empwtprjId; } public void setEmpwtprjId(String empwtprjId) { this.empwtprjId = empwtprjId; } public String getPtype() { return ptype; } public void setPtype(String ptype) { this.ptype = ptype; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getStwktm() { return stwktm; } public void setStwktm(String stwktm) { this.stwktm = stwktm; } public String getPlantm() { return plantm; } public void setPlantm(String plantm) { this.plantm = plantm; } public Double getEstapp() { return estapp; } public void setEstapp(Double estapp) { this.estapp = estapp; } public String getVisshdu() { return visshdu; } public void setVisshdu(String visshdu) { this.visshdu = visshdu; } public String getDirunder() { return dirunder; } public void setDirunder(String dirunder) { this.dirunder = dirunder; } 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 getNote() { return note; } public void setNote(String note) { this.note = note; } public Double getPjLgtd() { return pjLgtd; } public void setPjLgtd(Double pjLgtd) { this.pjLgtd = pjLgtd; } public Double getPjLttd() { return pjLttd; } public void setPjLttd(Double pjLttd) { this.pjLttd = pjLttd; } public String getEmpwtprjPid() { return empwtprjPid; } public void setEmpwtprjPid(String empwtprjPid) { this.empwtprjPid = empwtprjPid; } @Override public String toString() { return "BisInspEmpwtprj [" + "empwtprjId=" + empwtprjId + ", ptype=" + ptype + ", adCode=" + adCode + ", nm=" + nm + ", stwktm=" + stwktm + ", plantm=" + plantm + ", estapp=" + estapp + ", visshdu=" + visshdu + ", dirunder=" + dirunder + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", pjLgtd=" + pjLgtd + ", pjLttd=" + pjLttd + ", empwtprjPid=" + empwtprjPid + "]"; } }