DelegateInfoVO.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package jnpf.flowable.model.delegate;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/15 9:18
  10. */
  11. @Data
  12. public class DelegateInfoVO {
  13. @Schema(description = "主键id")
  14. private String id;
  15. @Schema(description = "委托类型0-发起委托,1-审批委托")
  16. private Integer type;
  17. @Schema(description = "委托人id")
  18. private String userId;
  19. @Schema(description = "委托人")
  20. private String userName;
  21. @Schema(description = "流程分类")
  22. private String flowCategory;
  23. @Schema(description = "被委托人")
  24. private String toUserName;
  25. @Schema(description = "被委托人")
  26. private List<String> toUserId;
  27. @Schema(description = "描述")
  28. private String description;
  29. @Schema(description = "开始日期")
  30. private Long startTime;
  31. @Schema(description = "结束日期")
  32. private Long endTime;
  33. @Schema(description = "委托流程id")
  34. private String flowId;
  35. @Schema(description = "委托流程名称")
  36. private String flowName;
  37. }