18 lines
408 B
Transact-SQL
18 lines
408 B
Transact-SQL
create table hrsa_salary_acct_sob_config
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
salary_acct_record_id bigint,
|
|
basic_config ntext,
|
|
employee_field_config ntext,
|
|
item_config ntext,
|
|
item_group_config ntext,
|
|
back_item_config ntext,
|
|
adjust_rule_config ntext,
|
|
check_rule_config ntext
|
|
)
|
|
GO |