| | |
| | | package org.ruoyi.system.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("sys_config") |
| | | @TableName("SYS_CONFIG") |
| | | public class SysConfig extends TenantEntity { |
| | | |
| | | /** |
| | | * 参数主键 |
| | | */ |
| | | @TableId(value = "config_id") |
| | | @TableId(value = "CONFIG_ID") |
| | | private Long configId; |
| | | |
| | | /** |
| | | * 参数名称 |
| | | */ |
| | | @TableField("CONFIG_NAME") |
| | | private String configName; |
| | | |
| | | /** |
| | | * 参数键名 |
| | | */ |
| | | @TableField("CONFIG_KEY") |
| | | private String configKey; |
| | | |
| | | /** |
| | | * 参数键值 |
| | | */ |
| | | @TableField("CONFIG_VALUE") |
| | | private String configValue; |
| | | |
| | | /** |
| | | * 系统内置(Y是 N否) |
| | | */ |
| | | @TableField("CONFIG_TYPE") |
| | | private String configType; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @TableField("REMARK") |
| | | private String remark; |
| | | |
| | | } |