36df7e2111b44c782e83164eeeeaecb9a3df69a0.svn-base 2.5 KB

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