9f24551dee945bbf01b9110574a6033f6268a104.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package cn.com.goldenwater.dcproj.dto;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * Created by jinshui on 2019/11/14.
  10. */
  11. public class TacEvalationInformMessageDto implements Serializable {
  12. @ApiModelProperty("通知人员列表")
  13. private List<TacEvalationInformDto> dtoList;
  14. @ApiModelProperty("批次类型")
  15. private String type;
  16. @ApiModelProperty("测评年度")
  17. private Long year;
  18. @ApiModelProperty("测评批次")
  19. private Long batch;
  20. @ApiModelProperty("结束时间")
  21. @DateTimeFormat(pattern = "yyyy-MM-dd")
  22. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  23. private Date cutTime;
  24. @ApiModelProperty("当前用户id")
  25. private String persId;
  26. public TacEvalationInformMessageDto(){}
  27. public Date getCutTime() {
  28. return cutTime;
  29. }
  30. public String getPersId() {
  31. return persId;
  32. }
  33. public Long getBatch() {
  34. return batch;
  35. }
  36. public void setBatch(Long batch) {
  37. this.batch = batch;
  38. }
  39. public void setPersId(String persId) {
  40. this.persId = persId;
  41. }
  42. public void setCutTime(Date cutTime) {
  43. this.cutTime = cutTime;
  44. }
  45. public List<TacEvalationInformDto> getDtoList() {
  46. return dtoList;
  47. }
  48. public Long getYear() {
  49. return year;
  50. }
  51. public void setYear(Long year) {
  52. this.year = year;
  53. }
  54. public String getType() {
  55. return type;
  56. }
  57. public void setType(String type) {
  58. this.type = type;
  59. }
  60. public void setDtoList(List<TacEvalationInformDto> dtoList) {
  61. this.dtoList = dtoList;
  62. }
  63. }