29 lines
1.4 KiB
SQL
29 lines
1.4 KiB
SQL
CREATE TABLE hrsa_salary_sob_back_item(
|
|
id bigint NOT NULL ,
|
|
salary_sob_id bigint NULL DEFAULT NULL ,
|
|
salary_item_id bigint NULL DEFAULT NULL ,
|
|
salary_item_code varchar(255) NULL DEFAULT NULL ,
|
|
data_type varchar(255) NULL DEFAULT NULL ,
|
|
rounding_mode int NULL DEFAULT NULL ,
|
|
pattern int NULL DEFAULT NULL ,
|
|
value_type int NULL DEFAULT NULL ,
|
|
formula_id bigint NULL DEFAULT NULL ,
|
|
back_calc_type int NULL DEFAULT NULL ,
|
|
tenant_key varchar(255) NULL DEFAULT NULL ,
|
|
creator bigint NULL DEFAULT NULL ,
|
|
delete_type int NULL DEFAULT NULL ,
|
|
create_time timestamp NULL DEFAULT NULL ,
|
|
update_time timestamp NULL DEFAULT NULL ,
|
|
PRIMARY KEY (id)
|
|
) ;
|
|
|
|
alter table hrsa_salary_acct_record add back_calc_status int null ;
|
|
alter table hrsa_salary_acct_result add origin_result_value VARCHAR(1000) null ;
|
|
alter table hrsa_salary_acct_result_report add origin_result_value VARCHAR(1000) null ;
|
|
alter table hrsa_salary_send add salary_acct_type int null ;
|
|
alter table hrsa_salary_send add send_status int null ;
|
|
alter table hrsa_salary_send_info add salary_acct_type int null ;
|
|
alter table hrsa_salary_template add replenish_name VARCHAR(100) null ;
|
|
alter table hrsa_salary_template add replenish_rule VARCHAR(255) null ;
|
|
alter table hrsa_salary_template add replenish_salary_item_setting text null ;
|
|
alter table hrsa_acct_result_temp add origin_result_value VARCHAR(1000) null ; |