| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- 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<TacEvalationInformDto> 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<TacEvalationInformDto> 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<TacEvalationInformDto> dtoList) {
- this.dtoList = dtoList;
- }
- }
|