package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import java.util.List; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.springframework.format.annotation.DateTimeFormat; /** * entity:BisInspComPblm * * @author litf * @date 2019-3-5 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspComPblm extends BaseBean implements Serializable { private String cpId; private String cpTitle; private String cpDesc; private Double cpLgtd; private Double cpLttd; @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") private Date cpIttm; private String cpRes; private String cpResnm; private List fileList; public BisInspComPblm() { } public List getFileList() { return fileList; } public void setFileList(List fileList) { this.fileList = fileList; } public String getCpId() { return cpId; } public void setCpId(String cpId) { this.cpId = cpId; } public String getCpTitle() { return cpTitle; } public void setCpTitle(String cpTitle) { this.cpTitle = cpTitle; } public String getCpDesc() { return cpDesc; } public void setCpDesc(String cpDesc) { this.cpDesc = cpDesc; } public Double getCpLgtd() { return cpLgtd; } public void setCpLgtd(Double cpLgtd) { this.cpLgtd = cpLgtd; } public Double getCpLttd() { return cpLttd; } public void setCpLttd(Double cpLttd) { this.cpLttd = cpLttd; } public Date getCpIttm() { return cpIttm; } public void setCpIttm(Date cpIttm) { this.cpIttm = cpIttm; } public String getCpRes() { return cpRes; } public void setCpRes(String cpRes) { this.cpRes = cpRes; } public String getCpResnm() { return cpResnm; } public void setCpResnm(String cpResnm) { this.cpResnm = cpResnm; } @Override public String toString() { return "BisInspComPblm [" + "cpId=" + cpId + ", cpTitle=" + cpTitle + ", cpDesc=" + cpDesc + ", cpLgtd=" + cpLgtd + ", cpLttd=" + cpLttd + ", cpIttm=" + cpIttm + ", cpRes=" + cpRes + ", cpResnm=" + cpResnm + "]"; } }