CandidatesVo.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package jnpf.flowable.model.candidates;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * 类的描述
  7. *
  8. * @author JNPF@YinMai Info. Co., Ltd
  9. * @version 5.0.x
  10. * @since 2024/4/18 15:58
  11. */
  12. @Data
  13. public class CandidatesVo implements Serializable {
  14. /**
  15. * 节点id
  16. */
  17. @Schema(description = "节点id")
  18. private String nodeId;
  19. /**
  20. * 任务id
  21. */
  22. @Schema(description = "任务id")
  23. private String taskId;
  24. /**
  25. * 审批人id
  26. */
  27. @Schema(description = "审批人id")
  28. private String handleId;
  29. /**
  30. * 审批人账号
  31. */
  32. @Schema(description = "审批人账号")
  33. private String account;
  34. /**
  35. * 候选人
  36. */
  37. @Schema(description = "候选人")
  38. private String candidates;
  39. /**
  40. * 经办主键
  41. */
  42. @Schema(description = "经办主键")
  43. private String operatorId;
  44. /**
  45. * 审批类型(1-候选人 2-异常处理人)
  46. */
  47. @Schema(description = "审批类型(1-候选人 2-异常处理人)")
  48. private Integer type;
  49. }