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