FlowBatchModel.java 440 B

123456789101112131415161718192021
  1. package jnpf.flowable.model.operator;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 类的描述
  6. *
  7. * @author JNPF@YinMai Info. Co., Ltd
  8. * @version 5.0.x
  9. * @since 2024/5/16 10:07
  10. */
  11. @Data
  12. public class FlowBatchModel {
  13. @Schema(description = "名称")
  14. private String fullName;
  15. @Schema(description = "主键")
  16. private String id;
  17. @Schema(description = "数量")
  18. private Long num;
  19. }