You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
3.0 KiB
Java
189 lines
3.0 KiB
Java
package com.glxp.api.entity.auth;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author 作者
|
|
* @since 2023-02-07
|
|
*/
|
|
@TableName("sys_custom_config_detail")
|
|
@Data
|
|
public class SysCustomConfigDetailEntity {
|
|
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
/**
|
|
* 配置id
|
|
*/
|
|
@TableField("configId")
|
|
private Long configId;
|
|
/**
|
|
* 类型 1列表 2表单 3查询框
|
|
*/
|
|
@TableField("type")
|
|
private String type;
|
|
|
|
/**
|
|
* 是否显示 1显示 2隐藏
|
|
*/
|
|
@TableField("isShow")
|
|
private String isShow;
|
|
|
|
/**
|
|
* 列名
|
|
*/
|
|
@TableField("columnName")
|
|
private String columnName;
|
|
|
|
/**
|
|
* 列描述
|
|
*/
|
|
@TableField("columnDesc")
|
|
private String columnDesc;
|
|
/**
|
|
* 列类型
|
|
*/
|
|
@TableField("columnType")
|
|
private String columnType;
|
|
|
|
/**
|
|
* 颜色规则
|
|
*/
|
|
@TableField("colorRule")
|
|
private String colorRule;
|
|
|
|
/**
|
|
* 字段替换规则
|
|
*/
|
|
@TableField("lableRule")
|
|
private String lableRule;
|
|
|
|
/**
|
|
* 字段替换规则
|
|
*/
|
|
@TableField(exist = false)
|
|
private Object lableRuleObj;
|
|
|
|
/**
|
|
* 按钮规则
|
|
*/
|
|
@TableField("buttonRule")
|
|
private String buttonRule;
|
|
|
|
/**
|
|
* 按钮规则
|
|
*/
|
|
@TableField(exist = false)
|
|
private Object buttonRulObj;
|
|
|
|
|
|
/**
|
|
* 宽度
|
|
*/
|
|
@TableField("width")
|
|
private Integer width;
|
|
|
|
/**
|
|
* 是否排序
|
|
*/
|
|
@TableField("sort")
|
|
private Boolean sort;
|
|
|
|
|
|
/**
|
|
* 是否缩略
|
|
*/
|
|
@TableField("tooltip")
|
|
private Boolean tooltip;
|
|
|
|
|
|
/**
|
|
* 排序
|
|
*/
|
|
@TableField("number")
|
|
private Integer number;
|
|
|
|
|
|
/**
|
|
* 行号
|
|
*/
|
|
@TableField("lineNumber")
|
|
private Integer lineNumber;
|
|
|
|
/**
|
|
* 点击事件
|
|
*/
|
|
@TableField("clickFuc")
|
|
private String clickFuc;
|
|
|
|
/**
|
|
* 禁用方法
|
|
*/
|
|
@TableField("禁用方法")
|
|
private String disabledFuc;
|
|
|
|
|
|
/**
|
|
* eval表达式
|
|
*/
|
|
@TableField("eval表达式")
|
|
private String expression;
|
|
|
|
/**
|
|
* 大小
|
|
*/
|
|
@TableField("size")
|
|
private String size;
|
|
|
|
/**
|
|
* 样式
|
|
*/
|
|
@TableField("style")
|
|
private String style;
|
|
|
|
/**
|
|
* 是否禁用
|
|
*/
|
|
@TableField("disabled")
|
|
private Boolean disabled;
|
|
|
|
/**
|
|
* 验证规则
|
|
*/
|
|
@TableField("checkRules")
|
|
private String checkRules;
|
|
/**
|
|
* 验证规则
|
|
*/
|
|
@TableField(exist = false)
|
|
private Object checkRulesObj;
|
|
|
|
/**
|
|
* input类型
|
|
*/
|
|
@TableField("inputType")
|
|
private String inputType;
|
|
|
|
/**
|
|
* 获取数据方法
|
|
*/
|
|
@TableField("dataFuc")
|
|
private String dataFuc;
|
|
|
|
/**
|
|
* 是否展示详细 1是 2否
|
|
*/
|
|
@TableField("isShowXx")
|
|
private String isShowXx;
|
|
}
|