Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.17 KB

File metadata and controls

37 lines (29 loc) · 1.17 KB

system_config(系统配置表)

系统配置信息表,采用key-value模式存储配置。

字段说明

字段 类型 说明
id INTEGER 内部主键
config_key VARCHAR(100) 配置键,唯一
config_value TEXT 配置值
config_type VARCHAR(20) 配置类型(string/integer/boolean/json)
description VARCHAR(255) 配置描述
is_public BOOLEAN 是否公开给前端
created_at BIGINT 创建时间(毫秒时间戳)
updated_at BIGINT 更新时间(毫秒时间戳)

配置类型说明

类型 说明
string 字符串类型
integer 整数类型
boolean 布尔类型
json JSON格式