package cn.com.goldenwater.dcproj.dto; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; import java.util.List; /** * Created by jinshui on 2019/11/14. */ public class TacEvalationInformMessageDto implements Serializable { @ApiModelProperty("通知人员列表") private List dtoList; @ApiModelProperty("批次类型") private String type; @ApiModelProperty("测评年度") private Long year; @ApiModelProperty("测评批次") private Long batch; @ApiModelProperty("结束时间") @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") private Date cutTime; @ApiModelProperty("当前用户id") private String persId; public TacEvalationInformMessageDto(){} public Date getCutTime() { return cutTime; } public String getPersId() { return persId; } public Long getBatch() { return batch; } public void setBatch(Long batch) { this.batch = batch; } public void setPersId(String persId) { this.persId = persId; } public void setCutTime(Date cutTime) { this.cutTime = cutTime; } public List getDtoList() { return dtoList; } public Long getYear() { return year; } public void setYear(Long year) { this.year = year; } public String getType() { return type; } public void setType(String type) { this.type = type; } public void setDtoList(List dtoList) { this.dtoList = dtoList; } }