d2a2ad5ba8d4c7d10dd578397c7a4267819d87b0.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:TacEvalationInform
  9. *
  10. * @author lune
  11. * @date 2019-11-12
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class TacEvalationInform extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键ID")
  16. private String id;
  17. @ApiModelProperty("通知类型(1:单元评测;2:年度评测)")
  18. private String type;
  19. @ApiModelProperty("年度")
  20. private Long year;
  21. @ApiModelProperty("批次")
  22. private Long batch;
  23. @ApiModelProperty("评测截止时间")
  24. private Date cutTm;
  25. @ApiModelProperty("评测人员id")
  26. private String zolPersId;
  27. @ApiModelProperty("发送通知次数")
  28. private Long informNum;
  29. @ApiModelProperty("插入时间(首次通知时间)")
  30. private Date inTm;
  31. @ApiModelProperty("修改时间(最后通知时间)")
  32. private Date upTm;
  33. @ApiModelProperty("插入人员id(通知人)")
  34. private String persId;
  35. @ApiModelProperty("状态0:纬度 1:已读")
  36. private String dataStat;
  37. @ApiModelProperty("展示title")
  38. private String title;
  39. public TacEvalationInform() {
  40. }
  41. public String getDataStat() {
  42. return dataStat;
  43. }
  44. public void setDataStat(String dataStat) {
  45. this.dataStat = dataStat;
  46. }
  47. public String getTitle() {
  48. return title;
  49. }
  50. public void setTitle(String title) {
  51. this.title = title;
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getType() {
  60. return type;
  61. }
  62. public void setType(String type) {
  63. this.type = type;
  64. }
  65. public Long getYear() {
  66. return year;
  67. }
  68. public void setYear(Long year) {
  69. this.year = year;
  70. }
  71. public Long getBatch() {
  72. return batch;
  73. }
  74. public void setBatch(Long batch) {
  75. this.batch = batch;
  76. }
  77. public Date getCutTm() {
  78. return cutTm;
  79. }
  80. public void setCutTm(Date cutTm) {
  81. this.cutTm = cutTm;
  82. }
  83. public String getZolPersId() {
  84. return zolPersId;
  85. }
  86. public void setZolPersId(String zolPersId) {
  87. this.zolPersId = zolPersId;
  88. }
  89. public Long getInformNum() {
  90. return informNum;
  91. }
  92. public void setInformNum(Long informNum) {
  93. this.informNum = informNum;
  94. }
  95. public Date getInTm() {
  96. return inTm;
  97. }
  98. public void setInTm(Date inTm) {
  99. this.inTm = inTm;
  100. }
  101. public Date getUpTm() {
  102. return upTm;
  103. }
  104. public void setUpTm(Date upTm) {
  105. this.upTm = upTm;
  106. }
  107. public String getPersId() {
  108. return persId;
  109. }
  110. public void setPersId(String persId) {
  111. this.persId = persId;
  112. }
  113. @Override
  114. public String toString() {
  115. return "TacEvalationInform [" + "id=" + id + ", type=" + type + ", year=" + year + ", batch=" + batch + ", cutTm=" + cutTm + ", zolPersId=" + zolPersId + ", informNum=" + informNum + ", inTm=" + inTm + ", upTm=" + upTm + ", persId=" + persId + "]";
  116. }
  117. }