CommentCrForm.java 569 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.flowable.model.comment;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 版本: V3.1.0
  6. * 版权: 引迈信息技术有限公司
  7. * 作者: JNPF开发平台组
  8. */
  9. @Data
  10. public class CommentCrForm {
  11. @Schema(description = "附件")
  12. private String file;
  13. @Schema(description = "图片")
  14. private String image;
  15. @Schema(description = "流程id")
  16. private String taskId;
  17. @Schema(description = "文本")
  18. private String text;
  19. @Schema(description = "评论id")
  20. private String replyId;
  21. }