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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package jnpf.base.model;
 
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 可视化列表模型
 *
 * @author JNPF开发平台组
 * @version V3.2.8
 * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @date 2021/11/20
 */
@Data
@Schema(description="可视化列表模型")
public class VisualFunctionModel {
    @Schema(description = "名称" )
    private String fullName;
    @Schema(description = "编码" )
    private String enCode;
    @Schema(description = "状态" )
    private Integer state;
    @Schema(description = "类型(1-应用开发,2-移动开发,3-流程表单,4-Web表单,5-App表单)" )
    private Integer type;
    @Schema(description = "关联的表" )
    private String tables;
    @Schema(description = "创建时间" )
    private Long creatorTime;
    @Schema(description = "创建人" )
    private String creatorUser;
    @Schema(description = "创建人id" )
    private String creatorUserId;
    @Schema(description = "修改时间" )
    private Long lastModifyTime;
    @Schema(description = "修改人" )
    private String lastModifyUser;
    @Schema(description = "修改人id" )
    private String lastModifyUserId;
    @Schema(description = "排序" )
    private Long sortCode;
    @Schema(description = "分类(数据字典维护)" )
    private String category;
    @Schema(description = "主键" )
    private String id;
    @Schema(description = "页面类型(1、纯表单,2、表单加列表,3、表单列表工作流、4、数据视图)" )
    private Integer webType;
    @Schema(description = "pc是否发布" )
    private Integer pcIsRelease;
    @Schema(description = "app是否发布" )
    private Integer appIsRelease;
    /**
     * 是否发布
     */
    @Schema(description = "是否发布" )
    private Integer isRelease;
    /**
     * 是否启用流程
     */
    @Schema(description = "是否启用流程" )
    private Integer enableFlow;
 
    /**
     * 状态
     */
    @Schema(description = "状态是否启用" )
    private Integer enabledMark;
    /**
     * 移动锁定0-锁定1-可移动
     */
    @Schema(description = "移动锁定0-未锁定1-锁定" )
    private Integer enabledLock;
 
    /**
     * 是否有包名
     */
    @Schema(description = "是否有包名")
    private boolean hasPackage = false;
 
    @Schema(description = "pc是否发布门户" )
    private Integer pcPortalIsRelease;
    @Schema(description = "app是否发布门户" )
    private Integer appPortalIsRelease;
 
    @Schema(description = "pc已发布菜单名称" )
    private String pcReleaseName;
    @Schema(description = "app已发布菜单名称" )
    private String appReleaseName;
 
    @Schema(description = "pc已发布门户名称" )
    private String pcPortalReleaseName;
    @Schema(description = "app已发布门户名称" )
    private String appPortalReleaseName;
 
    @Schema(description = "发布时勾选平台类型" )
    private String platformRelease;
}