weaver-hrm-salary/resource/sqlupgrade/SQLServer/sql202404260903.sql

18 lines
408 B
MySQL
Raw Normal View History

2024-05-06 16:03:29 +08:00
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