19 lines
691 B
SQL
19 lines
691 B
SQL
create table hrsa_salary_stats_dim
|
|
(
|
|
id bigint primary key comment 'ID' ,
|
|
create_time datetime comment '创建时间' ,
|
|
update_time datetime comment '修改时间' ,
|
|
creator bigint comment '创建人id' ,
|
|
delete_type int default 0 comment '是否删除' ,
|
|
tenant_key varchar(10) comment '租户KEY' ,
|
|
dim_name varchar(100) comment '统计维度名称' ,
|
|
dim_type varchar(20) comment '统计维度类型' ,
|
|
remark varchar(500) comment '描述' ,
|
|
setting varchar(2000) comment '设置内容',
|
|
is_default int comment '是否默认' ,
|
|
dim_code varchar(50) comment '统计维度编码'
|
|
)
|
|
;
|
|
|
|
create index idx_tenant_key_sal_stats_dim on hrsa_salary_stats_dim(tenant_key)
|
|
; |