VisualDevInfoVO.java 2.4 KB

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