TaskNodeModel.java 959 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package jnpf.flowable.model.templatenode;
  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/26 10:05
  11. */
  12. @Data
  13. public class TaskNodeModel implements Serializable {
  14. /**
  15. * 节点类型
  16. */
  17. @Schema(description = "节点类型")
  18. private String nodeType;
  19. /**
  20. * 节点编码
  21. */
  22. @Schema(description = "节点编码")
  23. private String nodeCode;
  24. /**
  25. * 节点名称
  26. */
  27. @Schema(description = "节点名称")
  28. private String nodeName;
  29. /**
  30. * 审核用户
  31. */
  32. @Schema(description = "审核用户")
  33. private String userName;
  34. /**
  35. * 节点类型(-1没有经过,0.经过 1.当前 2.未经过 3.异常)
  36. */
  37. @Schema(description = "节点类型(-1没有经过,0.经过 1.当前 2.未经过 3.异常)")
  38. private String type;
  39. }