1821349743@qq.com
2023-04-24 1a83fae321f3f109f077f92ad2931c76df6fe9de
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
package com.product.face.config;
 
/**
 * @Author cheng
 * @Date 2023/4/21 17:43
 * @Desc 常量类
 */
public class FaceConst {
    //字段key
    public static final String FACE_FIELD = "fields";
    //表单主表
    public static final String TABLE_FACE_CONFIG = "product_sys_face";
    //表单控件属性
    public static final String TABLE_FACE_FIELD_CONTROL_PROPERTY = "product_sys_face_control_property";
 
    public static final String CHILDREN = "children";
 
    public static final String FIELD_CONFIG = "__config__";
 
    public static final String FIELD_MASTER = "master_uuid";
    //控件表属性名字段
    public static final String FIELD_PROPERTY_NAME = "property_name";
    //控件表属性值字段
    public static final String FIELD_PROPERTY_VALUE = "property_value";
    //控件表属性类型字段 1 字符串 2 数组 3 子级对象 4 子级数组 5 Boolean (1=true 0 = false)
    public static final String FIELD_PROPERTY_TYPE = "property_type";
    //父级uuid字段
    public static final String FIELD_PARENT_UUID = "parent_uuid";
    //表单类型 1 列表 2 录入表单 3 其他
    public static final String FIELD_FACE_TYPE = "face_type";
    //表单分组字段
    public static final String FIELD_GROUP_UUID = "group_uuid";
 
    //控件排序属性
    public static final String CONTROL_SEQUENCE = "control_sequence";
 
}