| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * BisInspComPblmParam
- *
- * @author litf
- * @date 2019-3-5
- */
- public class BisInspComPblmParam extends PageParam implements Serializable {
- private String cpId;
- private String cpTitle;
- private String cpDesc;
- private Double cpLgtd;
- private Double cpLttd;
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date sttm;
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date entm;
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- private Date cpIttm;
- private String cpRes;
- private String cpResnm;
- public BisInspComPblmParam() {
- }
- public Date getSttm() {
- return sttm;
- }
- public void setSttm(Date sttm) {
- this.sttm = sttm;
- }
- public Date getEntm() {
- return entm;
- }
- public void setEntm(Date entm) {
- this.entm = entm;
- }
- 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 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;
- }
- public Date getCpIttm() {
- return cpIttm;
- }
- public void setCpIttm(Date cpIttm) {
- this.cpIttm = cpIttm;
- }
- }
|