146f9f12cc3b78c750550a33b4c3ad45919d406b.svn-base 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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 io.swagger.annotations.ApiModelProperty;
  9. import org.springframework.format.annotation.DateTimeFormat;
  10. /**
  11. * entity:BisInspWiujsSupport
  12. *
  13. * @author
  14. * @date 2022-2-21
  15. */
  16. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  17. public class BisInspWiujsSupport extends BaseBean implements Serializable {
  18. @ApiModelProperty("主键ID")
  19. private String id;
  20. @ApiModelProperty("子表ID")
  21. private String caseId;
  22. @ApiModelProperty("说明")
  23. private String explain;
  24. @ApiModelProperty("专家名称")
  25. private String expertNm;
  26. @ApiModelProperty("专家ID")
  27. private String expertId;
  28. @ApiModelProperty("记录人员ID")
  29. private String persId;
  30. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  31. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  32. @ApiModelProperty("创建时间")
  33. private Date intm;
  34. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  35. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  36. @ApiModelProperty("修改时间")
  37. private Date uptm;
  38. @ApiModelProperty("数据状态")
  39. private String dataStat;
  40. @ApiModelProperty("名称")
  41. private String name;
  42. @ApiModelProperty("文件")
  43. private List<GwComFile> gwComFileList;
  44. public List<GwComFile> getGwComFileList() {
  45. return gwComFileList;
  46. }
  47. public void setGwComFileList(List<GwComFile> gwComFileList) {
  48. this.gwComFileList = gwComFileList;
  49. }
  50. public String getId() {
  51. return id;
  52. }
  53. public void setId(String id) {
  54. this.id = id;
  55. }
  56. public String getCaseId() {
  57. return caseId;
  58. }
  59. public void setCaseId(String caseId) {
  60. this.caseId = caseId;
  61. }
  62. public String getExplain() {
  63. return explain;
  64. }
  65. public void setExplain(String explain) {
  66. this.explain = explain;
  67. }
  68. public String getExpertNm() {
  69. return expertNm;
  70. }
  71. public void setExpertNm(String expertNm) {
  72. this.expertNm = expertNm;
  73. }
  74. public String getExpertId() {
  75. return expertId;
  76. }
  77. public void setExpertId(String expertId) {
  78. this.expertId = expertId;
  79. }
  80. public String getPersId() {
  81. return persId;
  82. }
  83. public void setPersId(String persId) {
  84. this.persId = persId;
  85. }
  86. public Date getIntm() {
  87. return intm;
  88. }
  89. public void setIntm(Date intm) {
  90. this.intm = intm;
  91. }
  92. public Date getUptm() {
  93. return uptm;
  94. }
  95. public void setUptm(Date uptm) {
  96. this.uptm = uptm;
  97. }
  98. public String getDataStat() {
  99. return dataStat;
  100. }
  101. public void setDataStat(String dataStat) {
  102. this.dataStat = dataStat;
  103. }
  104. public String getName() {
  105. return name;
  106. }
  107. public void setName(String name) {
  108. this.name = name;
  109. }
  110. @Override
  111. public String toString() {
  112. return "BisInspWiujsSupport [" + "id=" + id + ", caseId=" + caseId + ", explain=" + explain + ", expertNm=" + expertNm + ", expertId=" + expertId + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", name=" + name + "]";
  113. }
  114. }