PatentProjectDTO.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.cslg.pas.common.dto.business;
  2. import cn.hutool.core.date.DateTime;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import io.swagger.v3.oas.annotations.media.Schema;
  5. import lombok.Data;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 专利数据库
  11. * @Author lirj
  12. * @Date 2023/11/1
  13. */
  14. @Data
  15. public class PatentProjectDTO {
  16. @Schema(description = "名称")//查询
  17. private String name;
  18. @Schema(description = "委托方id")
  19. private String entrustId;
  20. @Schema(description = "委托方名称") //查询/分组
  21. private String entrustName;
  22. @Schema(description = "负责人id")
  23. private String headId;
  24. @Schema(description = "负责部门id") // 查询
  25. private String departmentId;
  26. @Schema(description = "合同号")
  27. private String contractNo;
  28. @Schema(description = "内部卷号") //查询
  29. private String volumeNumber;
  30. @Schema(description = "委案日")
  31. @DateTimeFormat(pattern = "yyyy-MM-dd")
  32. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  33. private Date commissionCaseDay;
  34. @Schema(description = "描述")
  35. private String description;
  36. @Schema(description = "应用场景") //查询分组
  37. private List<Integer> scenarioIds;
  38. @Schema(description = "处理事项") //查询分组
  39. private List<Integer> matterIds;
  40. @Schema(description = "是否更新")
  41. private Boolean ifUpdate;
  42. @Schema(description = "树结构")
  43. private List<ProjectTreesDTO> trees;
  44. @Schema(description = "周期")
  45. private String crons;
  46. @Schema(description = "状态")
  47. private Integer status;
  48. @Schema(description = "事件集合")
  49. private List<ProjectEventDTO> events;
  50. @Schema(description = "文件guids")
  51. private List<String> fileGuids;
  52. }