ProjectGanttInfoVO.java 895 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.model.projectgantt;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. public class ProjectGanttInfoVO {
  6. @Schema(description ="父级id")
  7. private String parentId;
  8. @Schema(description ="项目编码")
  9. private String enCode;
  10. @Schema(description ="开始时间")
  11. private long startTime;
  12. @Schema(description ="完成进度")
  13. private String schedule;
  14. @Schema(description ="项目工期")
  15. private String timeLimit;
  16. @Schema(description ="项目名称")
  17. private String fullName;
  18. @Schema(description ="主键id")
  19. private String id;
  20. @Schema(description ="结束时间")
  21. private long endTime;
  22. @Schema(description ="参与人员")
  23. private String managerIds;
  24. @Schema(description ="项目描述")
  25. private String description;
  26. @Schema(description ="状态")
  27. private Integer state;
  28. }