VisualDevCrForm.java 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package jnpf.base.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * @author JNPF开发平台组
  6. * @version V3.1.0
  7. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  8. * @date 2021/3/16
  9. */
  10. @Data
  11. @Schema(description = "功能设计创建表单")
  12. public class VisualDevCrForm {
  13. @Schema(description = "名称")
  14. private String fullName;
  15. @Schema(description = "编码")
  16. private String enCode;
  17. @Schema(description = "类型(1-应用开发,2-移动开发,3-流程表单,4-Web表单,5-App表单)")
  18. private Integer type;
  19. @Schema(description = "描述")
  20. private String description;
  21. @Schema(description = "表单配置JSON")
  22. private String formData;
  23. @Schema(description = "列表配置JSON")
  24. private String columnData;
  25. @Schema(description = "app列表配置JSON")
  26. private String appColumnData;
  27. @Schema(description = "关联的表")
  28. private String tables;
  29. @Schema(description = "分类(数据字典维护)")
  30. private String category;
  31. @Schema(description = "状态")
  32. private Integer state = 0;
  33. @Schema(description = "关联数据连接id")
  34. private String dbLinkId;
  35. @Schema(description = "页面类型(1、纯表单,2、表单加列表,3、表单列表工作流、4、数据视图)")
  36. private String webType;
  37. @Schema(description = "排序")
  38. private Long sortCode;
  39. @Schema(description = "启用流程")
  40. private Integer enableFlow;
  41. @Schema(description = "流程引擎json")
  42. private String flowTemplateJson;
  43. @Schema(description = "接口id")
  44. private String interfaceId;
  45. @Schema(description = "接口名称")
  46. private String interfaceName;
  47. @Schema(description = "接口参数")
  48. private String interfaceParam;
  49. //以下系统表单属性
  50. @Schema(description = "Web地址")
  51. private String urlAddress;
  52. @Schema(description = "APP地址")
  53. private String appUrlAddress;
  54. @Schema(description = "接口路径")
  55. private String interfaceUrl;
  56. @Schema(description = "web页面地址")
  57. private String webAddress;
  58. @Schema(description = "app页面地址")
  59. private String appAddress;
  60. @Schema(description = "按钮设置json")
  61. private String buttonData;
  62. @Schema(description = "app按钮设置json")
  63. private String appButtonData;
  64. }