| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- 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<GwComFile> fileList;
- public BisInspComPblm() {
- }
- public List<GwComFile> getFileList() {
- return fileList;
- }
- public void setFileList(List<GwComFile> 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 + "]";
- }
- }
|