902d812203a9d973b0d759d267e69db65dde9458.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisInspComPblmParam
  8. *
  9. * @author litf
  10. * @date 2019-3-5
  11. */
  12. public class BisInspComPblmParam extends PageParam implements Serializable {
  13. private String cpId;
  14. private String cpTitle;
  15. private String cpDesc;
  16. private Double cpLgtd;
  17. private Double cpLttd;
  18. @DateTimeFormat(pattern = "yyyy-MM-dd")
  19. private Date sttm;
  20. @DateTimeFormat(pattern = "yyyy-MM-dd")
  21. private Date entm;
  22. @DateTimeFormat(pattern = "yyyy-MM-dd")
  23. private Date cpIttm;
  24. private String cpRes;
  25. private String cpResnm;
  26. public BisInspComPblmParam() {
  27. }
  28. public Date getSttm() {
  29. return sttm;
  30. }
  31. public void setSttm(Date sttm) {
  32. this.sttm = sttm;
  33. }
  34. public Date getEntm() {
  35. return entm;
  36. }
  37. public void setEntm(Date entm) {
  38. this.entm = entm;
  39. }
  40. public String getCpId() {
  41. return cpId;
  42. }
  43. public void setCpId(String cpId) {
  44. this.cpId = cpId;
  45. }
  46. public String getCpTitle() {
  47. return cpTitle;
  48. }
  49. public void setCpTitle(String cpTitle) {
  50. this.cpTitle = cpTitle;
  51. }
  52. public String getCpDesc() {
  53. return cpDesc;
  54. }
  55. public void setCpDesc(String cpDesc) {
  56. this.cpDesc = cpDesc;
  57. }
  58. public Double getCpLgtd() {
  59. return cpLgtd;
  60. }
  61. public void setCpLgtd(Double cpLgtd) {
  62. this.cpLgtd = cpLgtd;
  63. }
  64. public Double getCpLttd() {
  65. return cpLttd;
  66. }
  67. public void setCpLttd(Double cpLttd) {
  68. this.cpLttd = cpLttd;
  69. }
  70. public String getCpRes() {
  71. return cpRes;
  72. }
  73. public void setCpRes(String cpRes) {
  74. this.cpRes = cpRes;
  75. }
  76. public String getCpResnm() {
  77. return cpResnm;
  78. }
  79. public void setCpResnm(String cpResnm) {
  80. this.cpResnm = cpResnm;
  81. }
  82. public Date getCpIttm() {
  83. return cpIttm;
  84. }
  85. public void setCpIttm(Date cpIttm) {
  86. this.cpIttm = cpIttm;
  87. }
  88. }