MsgConfig.java 717 B

1234567891011121314151617181920212223242526272829
  1. package jnpf.flowable.model.templatenode.nodejson;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. /**
  7. * 解析引擎
  8. *
  9. * @author JNPF开发平台组
  10. * @version V3.1.0
  11. * @copyright 引迈信息技术有限公司
  12. */
  13. @Data
  14. public class MsgConfig {
  15. /**
  16. * 0.关闭 1.自定义 2.同步发起配置 3.默认
  17. */
  18. @Schema(description = "类型")
  19. private Integer on = 0;
  20. @Schema(description = "消息主键")
  21. private String msgId;
  22. @Schema(description = "接口主键")
  23. private String interfaceId;
  24. @Schema(description = "数据")
  25. private List<SendConfigJson> templateJson = new ArrayList<>();
  26. }