| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:TacEvalationInform
- *
- * @author lune
- * @date 2019-11-12
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class TacEvalationInform extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("通知类型(1:单元评测;2:年度评测)")
- private String type;
- @ApiModelProperty("年度")
- private Long year;
- @ApiModelProperty("批次")
- private Long batch;
- @ApiModelProperty("评测截止时间")
- private Date cutTm;
- @ApiModelProperty("评测人员id")
- private String zolPersId;
- @ApiModelProperty("发送通知次数")
- private Long informNum;
- @ApiModelProperty("插入时间(首次通知时间)")
- private Date inTm;
- @ApiModelProperty("修改时间(最后通知时间)")
- private Date upTm;
- @ApiModelProperty("插入人员id(通知人)")
- private String persId;
- @ApiModelProperty("状态0:纬度 1:已读")
- private String dataStat;
- @ApiModelProperty("展示title")
- private String title;
- public TacEvalationInform() {
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public Long getBatch() {
- return batch;
- }
- public void setBatch(Long batch) {
- this.batch = batch;
- }
- public Date getCutTm() {
- return cutTm;
- }
- public void setCutTm(Date cutTm) {
- this.cutTm = cutTm;
- }
- public String getZolPersId() {
- return zolPersId;
- }
- public void setZolPersId(String zolPersId) {
- this.zolPersId = zolPersId;
- }
- public Long getInformNum() {
- return informNum;
- }
- public void setInformNum(Long informNum) {
- this.informNum = informNum;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String toString() {
- return "TacEvalationInform [" + "id=" + id + ", type=" + type + ", year=" + year + ", batch=" + batch + ", cutTm=" + cutTm + ", zolPersId=" + zolPersId + ", informNum=" + informNum + ", inTm=" + inTm + ", upTm=" + upTm + ", persId=" + persId + "]";
- }
- }
|