ProjectTaskPageDTO.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.wtkj.dto;
  2. import com.fasterxml.jackson.databind.annotation.JsonSerialize;
  3. import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import javax.validation.constraints.NotNull;
  7. import java.io.Serializable;
  8. /**
  9. * @author Blizzard
  10. * @create at 2023-09-19 09:50
  11. * @describe
  12. */
  13. @Data
  14. public class ProjectTaskPageDTO implements Serializable {
  15. private static final long serialVersionUID = 1L;
  16. @NotNull(message = "projectId can't be null")
  17. @JsonSerialize(using = ToStringSerializer.class)
  18. private Long projectId;
  19. @NotNull(message = "stageId can't be null")
  20. @JsonSerialize(using = ToStringSerializer.class)
  21. private Long stageId;
  22. private String name;
  23. @ApiModelProperty(value = "当前登录用户的机构类型")
  24. @NotNull(message = "deptCategory can't be null")
  25. private Integer deptCategory;
  26. @ApiModelProperty(value = "当前登录用户的顶级机构id")
  27. @NotNull(message = "orgDeptId can't be null")
  28. private Long orgDeptId;
  29. private Integer taskStatus;
  30. @NotNull(message = "current can't be null")
  31. private Integer current;
  32. @NotNull(message = "size can't be null")
  33. private Integer size;
  34. }