package com.product.face.config;
|
|
import com.product.core.config.CoreConst;
|
|
/**
|
* @Author cheng
|
* @Date 2023/4/21 17:43
|
* @Desc 常量类
|
*/
|
public class FaceConst extends CoreConst {
|
//字段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_PROPERTY_CONFIG = "__config__";
|
public static final String FIELD_PROPERTY_VMODEL = "__vModel__";
|
public static final String FIELD_PROPERTY_LABEL = "label";
|
|
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";
|
//表单uuid
|
public static final String FIELD_FACE_UUID = "face_uuid";
|
//表单号
|
public static final String FIELD_FACE_NUMBER = "face_number";
|
|
|
//控件排序属性
|
public static final String CONTROL_SEQUENCE = "control_sequence";
|
|
/**
|
* 缓存起始Key
|
*/
|
public static final String FACE_LIST_KEY = "face:fieldList:";
|
|
public static final String FACE_FORM_CACHE_KEY = "face:form:";
|
|
|
}
|