22 lines
536 B
SQL
22 lines
536 B
SQL
create table hrsa_salary_echarts_setting
|
|
(
|
|
id bigint primary key ,
|
|
create_time timestamp,
|
|
update_time timestamp,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key varchar(10),
|
|
report_id bigint not null,
|
|
charts_type int not null,
|
|
item_values varchar(500),
|
|
item_col_value varchar(50) not null,
|
|
dimension_range int not null,
|
|
item_sort_value varchar(500),
|
|
item_col_sort_value varchar(50),
|
|
sort_type int,
|
|
sort_num int
|
|
);
|
|
/
|
|
|
|
create index idx_salary_echart_set_tk on hrsa_salary_echarts_setting(tenant_key);
|
|
/ |