22 lines
539 B
Transact-SQL
22 lines
539 B
Transact-SQL
create table hrsa_salary_echarts_setting
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
report_id bigint not null,
|
|
charts_type int not null,
|
|
item_values nvarchar(500),
|
|
item_col_value nvarchar(50) not null,
|
|
dimension_range int not null,
|
|
item_sort_value nvarchar(500),
|
|
item_col_sort_value nvarchar(50),
|
|
sort_type int,
|
|
sort_num int
|
|
)
|
|
GO
|
|
|
|
create index idx_salary_echart_set_tk on hrsa_salary_echarts_setting(tenant_key)
|
|
GO |