|
@@ -0,0 +1,236 @@
|
|
|
+create table apiinfo
|
|
|
+(
|
|
|
+ apiid int auto_increment
|
|
|
+ primary key,
|
|
|
+ apiname tinytext null comment 'api名称',
|
|
|
+ apitype tinytext null comment 'api类型',
|
|
|
+ requestpath tinytext null comment '请求地址',
|
|
|
+ routepath tinytext null comment '响应地址',
|
|
|
+ securitykey tinytext null comment '安全认证类型',
|
|
|
+ superiorid int null comment '所属api编号',
|
|
|
+ apicode tinytext null comment '参数编码',
|
|
|
+ datatype tinytext null comment '参数数据类型',
|
|
|
+ datadefaultvalue tinytext null comment '默认参数值',
|
|
|
+ constraint apiinfo_pk
|
|
|
+ unique (apiid)
|
|
|
+);
|
|
|
+
|
|
|
+create table appconnectlog
|
|
|
+(
|
|
|
+ connid int auto_increment
|
|
|
+ primary key,
|
|
|
+ appid tinytext null comment '应用编号',
|
|
|
+ requesttime datetime null comment '请求时间',
|
|
|
+ requestip tinytext null comment '请求地址',
|
|
|
+ apptoken tinytext null comment '连接令牌',
|
|
|
+ expiretime datetime null comment '令牌过期时间',
|
|
|
+ lasttime datetime null comment '最后活跃时间'
|
|
|
+);
|
|
|
+
|
|
|
+create table application
|
|
|
+(
|
|
|
+ applicationid int auto_increment
|
|
|
+ primary key,
|
|
|
+ appid tinytext null comment '编号',
|
|
|
+ appsecret tinytext null comment '连接密钥',
|
|
|
+ appname tinytext null comment '名称',
|
|
|
+ appengname tinytext null comment '英文名称',
|
|
|
+ appdescribe tinytext null comment '描述',
|
|
|
+ applogo longtext null comment '图标',
|
|
|
+ smalllogo longtext null comment '小图标',
|
|
|
+ backgroundimage longtext null comment '背景图',
|
|
|
+ apptokeneffective int null comment '令牌有效时长',
|
|
|
+ securitycoderule tinytext null comment '验证码规则',
|
|
|
+ securitycodeeffective int null comment '验证码有效时长',
|
|
|
+ multilogin int null comment '多机登陆',
|
|
|
+ passwordrule tinytext null comment '密码规则',
|
|
|
+ passwordeffective int null comment '密码有效时长'
|
|
|
+);
|
|
|
+
|
|
|
+create table applicationpermissions
|
|
|
+(
|
|
|
+ applicationpermissionsid int auto_increment
|
|
|
+ primary key,
|
|
|
+ appid tinytext null comment '应用编号',
|
|
|
+ apiid int null comment 'API编号',
|
|
|
+ columnlist tinytext null comment '列权限',
|
|
|
+ filterset tinytext null comment '行权限'
|
|
|
+);
|
|
|
+
|
|
|
+create table breakerrule
|
|
|
+(
|
|
|
+ breakerruleid int auto_increment comment '熔断规则自增id'
|
|
|
+ primary key,
|
|
|
+ breakerrulename tinytext null comment '熔断规则名称',
|
|
|
+ duration int null comment '熔断时间',
|
|
|
+ limitvalue int null comment '熔断范围值',
|
|
|
+ averageerrorrate decimal(5, 2) null comment '平均错误率',
|
|
|
+ errorcount int null comment '错误次数',
|
|
|
+ averageexecutiontime int null comment '平均执行时间',
|
|
|
+ returnmessage tinytext null comment '返回消息'
|
|
|
+);
|
|
|
+
|
|
|
+create table pageconfiguration
|
|
|
+(
|
|
|
+ pageconfigurationid int auto_increment
|
|
|
+ primary key,
|
|
|
+ pagetype tinytext not null comment '类型(模块、页面、按钮、Table表格、树、数据项、From表单)',
|
|
|
+ superiorid int null comment '上级编号',
|
|
|
+ pagename tinytext not null comment '名称',
|
|
|
+ pagecode tinytext not null comment '编码',
|
|
|
+ pagedescribe tinytext null comment '描述',
|
|
|
+ serviceid int null comment '绑定服务编号',
|
|
|
+ shortcutkeys tinytext null comment '快捷键(核心用于按钮)',
|
|
|
+ openmode tinytext null comment '打开方式(新页、弹出或抽屉、同页关联查询)',
|
|
|
+ pageroute tinytext null comment '路由',
|
|
|
+ pageaddress tinytext null comment '地址',
|
|
|
+ passparameters longtext null comment '传递参数',
|
|
|
+ defaultfilter tinytext null comment '页面打开时的默认查询条件',
|
|
|
+ pageicon tinytext null comment '图标',
|
|
|
+ rowbackgroundcolorexpression tinytext null comment '行背景色表达式',
|
|
|
+ rowfontcolorexpression tinytext null comment '行字体色表达式',
|
|
|
+ datatype tinytext null comment '渲染类型',
|
|
|
+ datalength int null comment '数据长度',
|
|
|
+ isdisplay tinytext null comment '是否显示',
|
|
|
+ displaynumber int null comment '显示顺序',
|
|
|
+ displaywidth int null comment '显示宽度',
|
|
|
+ backgroundcolorexpression tinytext null comment '背景色表达式',
|
|
|
+ fontcolorexpression tinytext null comment '字体色表达式',
|
|
|
+ enablesort int null comment '启用排序功能',
|
|
|
+ enablefilter int null comment '启用过滤功能',
|
|
|
+ enablegroup int null comment '是否分组',
|
|
|
+ enablecount int null comment '启用合计',
|
|
|
+ counttopmost int null comment '合计置顶',
|
|
|
+ isfiltercolumn int null comment '是否为查询条件',
|
|
|
+ isprimarykey int null comment '是否主键',
|
|
|
+ defaultparameters tinytext null comment '默认查询参数',
|
|
|
+ dropdownlist tinytext null comment '下来列表(服务编号)',
|
|
|
+ dropdownlistid tinytext null comment '下来列表键值',
|
|
|
+ dropdownlistlabel tinytext null comment '下来列表显示名称',
|
|
|
+ isrequired int null comment '是否必填',
|
|
|
+ uniquitytype tinytext null comment '唯一性',
|
|
|
+ formatrule tinytext null comment '格式校验规则',
|
|
|
+ defaultvalue tinytext null comment '默认值',
|
|
|
+ calculationformula tinytext null comment '计算公式',
|
|
|
+ servicetype int null,
|
|
|
+ groupid tinytext null comment '所属分组',
|
|
|
+ alias tinytext null comment '别名',
|
|
|
+ labelcode tinytext null comment '下拉数据关联项编码',
|
|
|
+ selected int null comment '是否勾选',
|
|
|
+ triggerserviceid int null comment '勾选触发的服务id',
|
|
|
+ charttype tinytext null comment '图表类型',
|
|
|
+ easysearch int default 0 null
|
|
|
+);
|
|
|
+
|
|
|
+create table ratelimitrule
|
|
|
+(
|
|
|
+ ratelimitingid int auto_increment
|
|
|
+ primary key,
|
|
|
+ ratelimitingname tinytext null comment '策略名',
|
|
|
+ duration int null comment '单位时间频率(秒)',
|
|
|
+ timeout int null comment '超时shi''c',
|
|
|
+ limitvalue int null comment '数量上限',
|
|
|
+ returnmessage tinytext null comment '超限返回提示',
|
|
|
+ serviceid tinytext null comment '适用服务编号列表',
|
|
|
+ pathmatch tinytext null comment '路径匹配'
|
|
|
+);
|
|
|
+
|
|
|
+create table tempsecuritycode
|
|
|
+(
|
|
|
+ codeid int auto_increment
|
|
|
+ primary key,
|
|
|
+ appid tinytext null comment '应用编号',
|
|
|
+ requestip tinytext null comment '请求地址',
|
|
|
+ sessionid tinytext null comment '请求编号',
|
|
|
+ securitycode tinytext null comment '验证码',
|
|
|
+ expiretime datetime null comment '验证码过期时间'
|
|
|
+);
|
|
|
+
|
|
|
+create table tenantManage
|
|
|
+(
|
|
|
+ tenantId int not null comment '租户ID'
|
|
|
+ primary key,
|
|
|
+ tenantName varchar(24) null comment '租户名称',
|
|
|
+ tenantEngName varchar(32) null comment '英文名称',
|
|
|
+ tenantDescribe text null comment '描述',
|
|
|
+ validStartTime datetime null comment '有效开始时间',
|
|
|
+ validEndTime datetime null comment '有效结束时间',
|
|
|
+ contact varchar(12) null comment '联系人',
|
|
|
+ phone varchar(16) null comment '联系电话'
|
|
|
+);
|
|
|
+
|
|
|
+create table usergroup
|
|
|
+(
|
|
|
+ usergroupid int auto_increment
|
|
|
+ primary key,
|
|
|
+ superiorid int null comment '上级编号',
|
|
|
+ usergroupname tinytext null comment '名称',
|
|
|
+ usergroupdescribe text null comment '描述',
|
|
|
+ isenable int null comment '是否启用',
|
|
|
+ isdelete int null comment '删除状态',
|
|
|
+ grouptype tinytext null comment '组织类型'
|
|
|
+);
|
|
|
+
|
|
|
+create table usergrouppermissions
|
|
|
+(
|
|
|
+ userpermissionsid int auto_increment
|
|
|
+ primary key,
|
|
|
+ usergroupid int null comment '用户组编号',
|
|
|
+ pageconfigurationid int null comment '权限项编号',
|
|
|
+ serviceid int null comment '服务编号',
|
|
|
+ insetcolumnlist text null comment '新增权限',
|
|
|
+ updatecolumnlist text null comment '更新权限',
|
|
|
+ selectcolumnlist text null comment '查询权限',
|
|
|
+ filterset text null comment '过滤权限'
|
|
|
+);
|
|
|
+
|
|
|
+create table userinfo
|
|
|
+(
|
|
|
+ userid int auto_increment
|
|
|
+ primary key,
|
|
|
+ usergroupid int null comment '所属用户组编号',
|
|
|
+ username varchar(255) null comment '用户名',
|
|
|
+ account varchar(255) not null comment '账号',
|
|
|
+ userpassword varchar(255) null comment '密码',
|
|
|
+ userdescribe text null comment '描述',
|
|
|
+ isenable int null comment '是否启用',
|
|
|
+ secondarypassword varchar(255) null comment '二次密码',
|
|
|
+ multilogin int null comment '多机登录',
|
|
|
+ passwordlastmodified datetime null comment '密码最后修改时间',
|
|
|
+ isdelete int null comment '删除状态',
|
|
|
+ email varchar(64) null comment '右键',
|
|
|
+ constraint account
|
|
|
+ unique (account)
|
|
|
+);
|
|
|
+
|
|
|
+create table userloginlog
|
|
|
+(
|
|
|
+ loginid int auto_increment
|
|
|
+ primary key,
|
|
|
+ userid int null comment '用户编号',
|
|
|
+ requestip tinytext null comment '请求地址',
|
|
|
+ sessionid tinytext null comment '请求编号',
|
|
|
+ logintime datetime null comment '登录时间',
|
|
|
+ usertoken tinytext null comment '用户令牌',
|
|
|
+ lasttime datetime null comment '最后活跃时间',
|
|
|
+ lastheartbeat datetime null comment '最后心跳时间',
|
|
|
+ logouttime datetime null comment '登出时间',
|
|
|
+ apptoken tinytext null comment '连接令牌',
|
|
|
+ isexpires tinyint null comment '是否过期',
|
|
|
+ appid tinytext null comment '应用编号',
|
|
|
+ expirestime datetime null comment '过期时间'
|
|
|
+);
|
|
|
+
|
|
|
+create table userpermissions
|
|
|
+(
|
|
|
+ userpermissionsid int auto_increment
|
|
|
+ primary key,
|
|
|
+ userid int null comment '用户变化',
|
|
|
+ pageconfigurationid int null comment '权限项编号',
|
|
|
+ serviceid int null comment '服务编号',
|
|
|
+ insetcolumnlist text null comment '新增',
|
|
|
+ updatecolumnlist text null comment '更新',
|
|
|
+ selectcolumnlist text null comment '查询',
|
|
|
+ filterset text null comment '过滤',
|
|
|
+ parentserviceid int null
|
|
|
+);
|