IntegrateEntity.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package jnpf.integrate.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. /**
  7. *
  8. * @version V3.4.5
  9. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  10. * @author JNPF开发平台组
  11. */
  12. @Data
  13. @TableName("base_integrate")
  14. public class IntegrateEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
  15. /**
  16. * 名称
  17. */
  18. @TableField("F_FULL_NAME")
  19. private String fullName;
  20. /**
  21. * 编码
  22. */
  23. @TableField("F_EN_CODE")
  24. private String enCode;
  25. /**
  26. * 模板
  27. */
  28. @TableField("F_TEMPLATE_JSON")
  29. private String templateJson;
  30. /**
  31. * 类型(1-事件,2-定时 )
  32. */
  33. @TableField("F_TYPE")
  34. private Integer type;
  35. /**
  36. * 开始表单id
  37. */
  38. @TableField("F_FORM_ID")
  39. private String formId;
  40. /**
  41. * 类型 (1.新增 2.修改 3.删除)
  42. */
  43. @TableField("F_TRIGGER_TYPE")
  44. private Integer triggerType;
  45. }