18 lines
402 B
MySQL
18 lines
402 B
MySQL
|
|
create table hrsa_salary_acct_sob_config
|
||
|
|
(
|
||
|
|
id bigint primary key ,
|
||
|
|
create_time timestamp,
|
||
|
|
update_time timestamp,
|
||
|
|
creator bigint,
|
||
|
|
delete_type int default 0,
|
||
|
|
tenant_key varchar(10),
|
||
|
|
salary_acct_record_id bigint,
|
||
|
|
basic_config text,
|
||
|
|
employee_field_config text,
|
||
|
|
item_config text,
|
||
|
|
item_group_config text,
|
||
|
|
back_item_config text,
|
||
|
|
adjust_rule_config text,
|
||
|
|
check_rule_config text
|
||
|
|
);
|
||
|
|
/
|