diff --git a/resource/ecology9/sqlupgrade/Oracle/sql202205130903.sql b/resource/ecology9/sqlupgrade/Oracle/sql202205130903.sql index 7628c2165..5ca5aff5e 100644 --- a/resource/ecology9/sqlupgrade/Oracle/sql202205130903.sql +++ b/resource/ecology9/sqlupgrade/Oracle/sql202205130903.sql @@ -1,19 +1,18 @@ - CREATE TABLE hrsa_acct_result_temp( - id NUMBER(38,0) NOT NULL, - calculate_key varchar2(50) NOT NULL, - salary_sob_id NUMBER(38,0) NOT NULL, - salary_acct_emp_id NUMBER(38,0) NOT NULL, - salary_acct_record_id NUMBER(38,0) NOT NULL, - employee_id NUMBER(38,0) NOT NULL, - tax_agent_id NUMBER(38,0) NOT NULL, - salary_item_id NUMBER(38,0) NOT NULL, - result_value varchar2(1000) NOT NULL, - creator NUMBER(38,0) NOT NULL, - create_time date NOT NULL, - update_time date NOT NULL, - delete_type number NOT NULL, - tenant_key varchar2(10) NOT NULL + id NUMBER(38,0) primary key NOT NULL, + calculate_key varchar2(50) DEFAULT '', + salary_sob_id NUMBER(38,0) DEFAULT 0, + salary_acct_emp_id NUMBER(38,0) DEFAULT 0, + salary_acct_record_id NUMBER(38,0) DEFAULT 0, + employee_id NUMBER(38,0) DEFAULT 0, + tax_agent_id NUMBER(38,0) DEFAULT 0, + salary_item_id NUMBER(38,0) DEFAULT 0, + result_value varchar2(1000) DEFAULT '', + creator NUMBER(38,0) DEFAULT '0', + create_time date DEFAULT sysdate, + update_time date DEFAULT sysdate, + delete_type number DEFAULT 0, + tenant_key varchar2(10) DEFAULT '' ) / create sequence hrsa_acct_result_temp_id @@ -32,20 +31,20 @@ end; CREATE TABLE hrsa_add_up_deduction ( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, tax_agent_id NUMBER(38,0) NOT NULL, declare_month DATE DEFAULT sysdate, - add_up_child_education varchar2(255) , - add_up_continuing_education varchar2(255) , - add_up_housing_loan_interest varchar2(255) , - add_up_housing_rent varchar2(255) NULL , - add_up_support_elderly varchar2(255) NULL , + add_up_child_education varchar2(255) DEFAULT '', + add_up_continuing_education varchar2(255) DEFAULT '', + add_up_housing_loan_interest varchar2(255) DEFAULT '', + add_up_housing_rent varchar2(255) DEFAULT '' , + add_up_support_elderly varchar2(255) DEFAULT '' , create_time date DEFAULT sysdate, update_time date DEFAULT sysdate, - creator NUMBER(38,0) NOT NULL , - delete_type number NOT NULL , - tenant_key varchar2(10) NOT NULL + creator NUMBER(38,0) DEFAULT 0 , + delete_type number DEFAULT 0 , + tenant_key varchar2(10) DEFAULT '' ) / create sequence hrsa_add_up_deduction_id @@ -64,30 +63,30 @@ end; CREATE TABLE hrsa_add_up_situation( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, tax_agent_id NUMBER(38,0) NOT NULL, tax_year_month date DEFAULT sysdate, year NUMBER(38,0) DEFAULT 0, - add_up_income varchar2(255) NULL , - add_up_subtraction varchar2(255) NULL , - add_up_social_security_total varchar2(255) NULL , - add_up_accumulation_fund_total varchar2(255) NULL , - add_up_child_education varchar2(255) NULL , - add_up_continuing_education varchar2(255) NULL , - add_up_housing_loan_interest varchar2(255) NULL , - add_up_housing_rent varchar2(255) NULL , - add_up_support_elderly varchar2(255) NULL , - add_up_enterprise_and_other varchar2(255) , + add_up_income varchar2(255) DEFAULT '' , + add_up_subtraction varchar2(255) DEFAULT '' , + add_up_social_security_total varchar2(255) DEFAULT '' , + add_up_accumulation_fund_total varchar2(255) DEFAULT '' , + add_up_child_education varchar2(255) DEFAULT '' , + add_up_continuing_education varchar2(255) DEFAULT '' , + add_up_housing_loan_interest varchar2(255) DEFAULT '' , + add_up_housing_rent varchar2(255) DEFAULT '' , + add_up_support_elderly varchar2(255) DEFAULT '' , + add_up_enterprise_and_other varchar2(255) DEFAULT '', add_up_other_deduction varchar2(255) DEFAULT '0.00000', - add_up_tax_exempt_income varchar2(255) NULL , - add_up_allowed_donation varchar2(255) NULL , - add_up_advance_tax varchar2(255) NULL , + add_up_tax_exempt_income varchar2(255) DEFAULT '' , + add_up_allowed_donation varchar2(255) DEFAULT '' , + add_up_advance_tax varchar2(255) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, - creator NUMBER(38,0) NOT NULL , - delete_type number NOT NULL , - tenant_key varchar2(10) NOT NULL + creator NUMBER(38,0) DEFAULT 0 , + delete_type number DEFAULT 0 , + tenant_key varchar2(10) DEFAULT '' ) / @@ -111,21 +110,21 @@ end; CREATE TABLE hrsa_attend_quote( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_year_month date NOT NULL, year number DEFAULT 0, month number DEFAULT 0, - salary_sob_id NUMBER(38,0) NOT NULL, + salary_sob_id NUMBER(38,0) DEFAULT '', source_type number DEFAULT 0, salary_accounting_status number DEFAULT 0, - attend_cycle varchar2(100) NOT NULL , - salary_cycle varchar2(100) NOT NULL , - description varchar2(100) NOT NULL , + attend_cycle varchar2(100) DEFAULT '' , + salary_cycle varchar2(100) DEFAULT '' , + description varchar2(100) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -147,34 +146,20 @@ end; CREATE TABLE hrsa_attend_quote_data( - id NUMBER(38,0) NOT NULL, - employee_id NUMBER(38,0) NOT NULL, - attend_quote_id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, + employee_id NUMBER(38,0) DEFAULT 0, + attend_quote_id NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / -create sequence hrsa_attend_quote_data_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_attend_quote_data_Tri -before insert on hrsa_attend_quote_data -for each row -begin -select hrsa_attend_quote_data_id.nextval into :new.id from dual; -end; -/ - CREATE TABLE hrsa_attend_quote_data_value( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) DEFAULT 0, attend_quote_id NUMBER(38,0) DEFAULT 0, attend_quote_data_id NUMBER(38,0) NOT NULL, @@ -184,7 +169,7 @@ CREATE TABLE hrsa_attend_quote_data_value( update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -206,18 +191,18 @@ end; CREATE TABLE hrsa_attend_quote_field( - id NUMBER(38,0) NOT NULL, - field_name varchar2(100) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + field_name varchar2(100) DEFAULT '' , source_type number DEFAULT 0, field_type number DEFAULT 0, enable_status number DEFAULT 0, - code varchar2(50) NOT NULL , - description varchar2(100) NOT NULL , + code varchar2(50) DEFAULT '' , + description varchar2(100) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -239,15 +224,15 @@ end; CREATE TABLE hrsa_attend_quote_sync_set( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, source_type number DEFAULT 0, - current_setting_content varchar2(4000) NOT NULL , - default_setting_content varchar2(4000) NOT NULL , + current_setting_content varchar2(4000) DEFAULT '', + default_setting_content varchar2(4000) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -271,10 +256,10 @@ end; CREATE TABLE hrsa_bill_batch( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, bill_month varchar2(30) NOT NULL, bill_status number NOT NULL, - social_num number DEFAULT ((0)), + social_num number DEFAULT 0, fund_num number DEFAULT 0 , other_num number DEFAULT 0 , social_pay varchar2(4000) NULL, @@ -286,7 +271,7 @@ CREATE TABLE hrsa_bill_batch( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -308,7 +293,7 @@ end; CREATE TABLE hrsa_bill_batch_encdata( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, tablename varchar2(50) NOT NULL, fieldname varchar2(50) NOT NULL, enc_value varchar2(4000) NOT NULL, @@ -343,7 +328,7 @@ end; CREATE TABLE hrsa_bill_detail( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, bill_month varchar2(30) NOT NULL, bill_status number NOT NULL, @@ -384,7 +369,7 @@ CREATE TABLE hrsa_bill_detail( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -410,7 +395,7 @@ end; CREATE TABLE hrsa_bill_detail_temp( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, bill_month varchar2(30) NOT NULL, bill_status number NOT NULL, @@ -451,7 +436,7 @@ CREATE TABLE hrsa_bill_detail_temp( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -477,7 +462,7 @@ end; CREATE TABLE hrsa_bill_inspect( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, bill_month varchar2(30) NOT NULL, payment_status number NOT NULL, @@ -487,7 +472,7 @@ CREATE TABLE hrsa_bill_inspect( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -512,7 +497,7 @@ end; CREATE TABLE hrsa_check_result( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_acct_record_id NUMBER(38,0) NOT NULL, salary_check_rule_id NUMBER(38,0) NOT NULL, formula_id NUMBER(38,0) NOT NULL, @@ -520,7 +505,7 @@ CREATE TABLE hrsa_check_result( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -545,7 +530,7 @@ end; CREATE TABLE hrsa_check_result_record( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_acct_record_id NUMBER(38,0) NOT NULL, salary_check_rule_id NUMBER(38,0) NOT NULL, formula_id NUMBER(38,0) NOT NULL, @@ -555,7 +540,7 @@ CREATE TABLE hrsa_check_result_record( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -577,7 +562,7 @@ end; CREATE TABLE hrsa_ck_result_detail_temp( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_acct_emp_id NUMBER(38,0) NOT NULL, salary_acct_record_id NUMBER(38,0) NOT NULL, employee_id NUMBER(38,0) NOT NULL, @@ -586,7 +571,7 @@ CREATE TABLE hrsa_ck_result_detail_temp( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL, calculate_key varchar2(50) NOT NULL ) @@ -610,7 +595,7 @@ end; CREATE TABLE hrsa_excel_acct_result( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) NOT NULL, salary_acct_emp_id NUMBER(38,0) NOT NULL, salary_acct_record_id NUMBER(38,0) NOT NULL, @@ -620,7 +605,7 @@ CREATE TABLE hrsa_excel_acct_result( creator NUMBER(38,0) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL, tax_agent_id NUMBER(38,0) NOT NULL ) @@ -643,7 +628,7 @@ end; CREATE TABLE hrsa_formula( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, name varchar2(255) NOT NULL, description varchar2(255) NULL , module varchar2(255) NOT NULL, @@ -655,32 +640,18 @@ CREATE TABLE hrsa_formula( formula varchar2(4000) NOT NULL, formulaRunScript varchar2(4000) NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, create_time date NOT NULL, update_time date NOT NULL ) -/ -CREATE sequence hrsa_formula_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_formula_Tri -before insert on hrsa_formula -for each row -begin -select hrsa_formula_id.nextval into :new.id from dual; -end; -/ - +/ CREATE TABLE hrsa_formula_var( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, name varchar2(255) NOT NULL, formula_id NUMBER(38,0) NOT NULL, field_id varchar2(255) NOT NULL, @@ -689,32 +660,18 @@ CREATE TABLE hrsa_formula_var( source varchar2(255) NOT NULL, order_index number NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, create_time date NOT NULL, update_time date NOT NULL ) - -/ -CREATE sequence hrsa_formula_var_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_formula_var_Tri -before insert on hrsa_formula_var -for each row -begin -select hrsa_formula_var_id.nextval into :new.id from dual; -end; -/ +/ CREATE TABLE hrsa_fund_archives( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, employee_id number NOT NULL, non_payment number NULL, welfare_type number NOT NULL, @@ -729,7 +686,7 @@ CREATE TABLE hrsa_fund_archives( create_time date NOT NULL, update_time date NOT NULL, creator number NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -753,7 +710,7 @@ end; CREATE TABLE hrsa_insurance_category( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, insurance_name varchar2(50) NOT NULL, welfare_type number NOT NULL, is_use number DEFAULT 1, @@ -763,31 +720,14 @@ CREATE TABLE hrsa_insurance_category( update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) - - / -CREATE sequence hrsa_insurance_category_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_insurance_category_Tri -before insert on hrsa_insurance_category -for each row -begin -select hrsa_insurance_category_id.nextval into :new.id from dual; -end; -/ - - CREATE TABLE hrsa_other_archives( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, non_payment number NULL, welfare_type number NOT NULL, @@ -800,7 +740,7 @@ CREATE TABLE hrsa_other_archives( create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -822,19 +762,19 @@ end; CREATE TABLE hrsa_other_deduction( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, tax_agent_id NUMBER(38,0) NOT NULL, declare_month date DEFAULT sysdate, business_healthy_insurance varchar2(255) DEFAULT '0.00000', - tax_delay_endowment_insurance varchar2(255) , - other_deduction varchar2(255), - deduction_allowed_donation varchar2(255), + tax_delay_endowment_insurance varchar2(255) DEFAULT '', + other_deduction varchar2(255) DEFAULT '', + deduction_allowed_donation varchar2(255) DEFAULT '', create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -857,7 +797,7 @@ end; CREATE TABLE hrsa_salary_acct_emp( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_acct_record_id NUMBER(38,0) DEFAULT 0, salary_sob_id NUMBER(38,0) DEFAULT 0, employee_id NUMBER(38,0) DEFAULT 0, @@ -867,7 +807,7 @@ CREATE TABLE hrsa_salary_acct_emp( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) + tenant_key varchar2(10) DEFAULT '' ) / CREATE sequence hrsa_salary_acct_emp_id @@ -887,18 +827,18 @@ end; CREATE TABLE hrsa_salary_acct_record( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_month DATE DEFAULT to_date('1900-01-01','YYYY-DD-mm'), tax_cycle DATE DEFAULT to_date('1900-01-01','YYYY-DD-mm'), salary_sob_id NUMBER(38,0) DEFAULT 0, status number DEFAULT 1, acct_times number DEFAULT 0, - description varchar2(100) NOT NULL, + description varchar2(100) DEFAULT '', creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -923,7 +863,7 @@ end; CREATE TABLE hrsa_salary_acct_result( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) DEFAULT 0, salary_acct_emp_id NUMBER(38,0) DEFAULT 0, salary_acct_record_id NUMBER(38,0) DEFAULT 0, @@ -958,42 +898,26 @@ end; CREATE TABLE hrsa_salary_archive( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, employee_id NUMBER(38,0) NOT NULL, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) + tenant_key varchar2(10) DEFAULT '' ) - - / -CREATE sequence hrsa_salary_archive_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_salary_archive_Tri -before insert on hrsa_salary_archive -for each row -begin -select hrsa_salary_archive_id.nextval into :new.id from dual; -end; -/ - CREATE TABLE hrsa_salary_archive_dimission( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, dimission_time_interval varchar2(20) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1019,17 +943,17 @@ CREATE TABLE hrsa_salary_archive_item( salary_archive_id NUMBER(38,0) NOT NULL, employee_id NUMBER(38,0) DEFAULT 0, effective_time DATE DEFAULT sysdate, - adjust_reason varchar2(100) NOT NULL, + adjust_reason varchar2(100) DEFAULT '', salary_item_id NUMBER(38,0) DEFAULT 0, - item_value varchar2(200) NOT NULL , - description varchar2(200) NOT NULL , + item_value varchar2(200) DEFAULT '' , + description varchar2(200) DEFAULT '' , operator NUMBER(38,0) DEFAULT 0, operate_time date NULL , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1052,20 +976,20 @@ end; CREATE TABLE hrsa_salary_archive_tax_agent( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_archive_id NUMBER(38,0) NOT NULL, employee_id NUMBER(38,0) DEFAULT 0, effective_time DATE DEFAULT sysdate, - adjust_reason varchar2(100) NOT NULL , + adjust_reason varchar2(100) DEFAULT '' , tax_agent_id NUMBER(38,0) DEFAULT 0, operator NUMBER(38,0) DEFAULT 0, operate_time date NULL , - description varchar2(200) NULL , + description varchar2(200) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -1086,9 +1010,9 @@ end; CREATE TABLE hrsa_salary_item( - id NUMBER(38,0) NOT NULL, - name varchar2(100) NOT NULL , - code varchar2(100) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '' , + code varchar2(100) DEFAULT '' , system_type number DEFAULT 0, sys_salary_item_id NUMBER(38,0) DEFAULT 0, category number DEFAULT 7 , @@ -1100,37 +1024,21 @@ CREATE TABLE hrsa_salary_item( value_type number DEFAULT 1 , datasource number DEFAULT 0, formula_id NUMBER(38,0) DEFAULT 0, - description varchar2(1000) , + description varchar2(1000) DEFAULT '', can_edit number DEFAULT 1 , can_delete number DEFAULT 1 , creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL , + tenant_key varchar2(10) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, data_type varchar2(20) NOT NULL -) +) / -CREATE sequence hrsa_salary_item_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_salary_item_Tri -before insert on hrsa_salary_item -for each row -begin -select hrsa_salary_item_id.nextval into :new.id from dual; -end; -/ - - - CREATE TABLE hrsa_salary_send( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_month date NOT NULL, salary_accounting_id NUMBER(38,0) DEFAULT 0, salary_sob_id NUMBER(38,0) NOT NULL, @@ -1141,7 +1049,7 @@ CREATE TABLE hrsa_salary_send( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1164,7 +1072,7 @@ end; CREATE TABLE hrsa_salary_send_info( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_send_id NUMBER(38,0) NOT NULL, salary_month date NOT NULL, salary_acct_record_id NUMBER(38,0) DEFAULT 0, @@ -1177,32 +1085,16 @@ CREATE TABLE hrsa_salary_send_info( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NULL + tenant_key varchar2(10) DEFAULT '' ) - / -CREATE sequence hrsa_salary_send_info_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_salary_send_info_Tri -before insert on hrsa_salary_send_info -for each row -begin -select hrsa_salary_send_info_id.nextval into :new.id from dual; -end; -/ - - CREATE TABLE hrsa_salary_sob( - id NUMBER(38,0) NOT NULL, - name varchar2(100) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '' , income_category number DEFAULT 1 , salary_cycle_type number DEFAULT 3 , salary_cycle_from_day number DEFAULT 1 , @@ -1211,12 +1103,12 @@ CREATE TABLE hrsa_salary_sob( attend_cycle_from_day number DEFAULT 1 , social_security_cycle_type number DEFAULT 3 , disable number DEFAULT 0, - description varchar2(1000) NOT NULL , + description varchar2(1000) DEFAULT '', creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1240,7 +1132,7 @@ end; CREATE TABLE hrsa_salary_sob_adjust_rule( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) NOT NULL, salary_item_id NUMBER(38,0) NOT NULL, day_of_month number DEFAULT 0, @@ -1250,7 +1142,7 @@ CREATE TABLE hrsa_salary_sob_adjust_rule( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1274,7 +1166,7 @@ end; CREATE TABLE hrsa_salary_sob_check_rule( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) NOT NULL, name varchar2(100) NOT NULL, formula_id NUMBER(38,0) NOT NULL, @@ -1282,7 +1174,7 @@ CREATE TABLE hrsa_salary_sob_check_rule( create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1306,7 +1198,7 @@ end; CREATE TABLE hrsa_salary_sob_default_item( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, income_category number DEFAULT 1 , sys_salary_item_id NUMBER(38,0) DEFAULT 0, can_edit number DEFAULT 1 , @@ -1315,7 +1207,7 @@ CREATE TABLE hrsa_salary_sob_default_item( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL , + tenant_key varchar2(10) DEFAULT '', sob_default_item_group_id NUMBER(38,0) NOT NULL, sorted_index number NOT NULL ) @@ -1339,16 +1231,16 @@ end; CREATE TABLE hrsa_salary_sob_emp_field( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) DEFAULT 0, - field_code varchar2(100) NOT NULL , + field_code varchar2(100) DEFAULT '' , sorted_index number DEFAULT 0, can_delete number DEFAULT 1 , creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -1370,17 +1262,17 @@ end; CREATE TABLE hrsa_salary_sob_item( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) NOT NULL, salary_item_id NUMBER(38,0) NOT NULL, salary_sob_item_group_id NUMBER(38,0) NOT NULL, formula_id NUMBER(38,0) NOT NULL, sorted_index number NOT NULL, - description varchar2(1000) NOT NULL , + description varchar2(1000) DEFAULT '' , create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1402,7 +1294,7 @@ end; CREATE TABLE hrsa_salary_sob_item_group( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) NOT NULL, name varchar2(100) NOT NULL, sorted_index number NOT NULL, @@ -1410,29 +1302,16 @@ CREATE TABLE hrsa_salary_sob_item_group( create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) / -CREATE sequence hrsa_salary_sob_item_group_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_salary_sob_item_group_Tri -before insert on hrsa_salary_sob_item_group -for each row -begin -select hrsa_salary_sob_item_group_id.nextval into :new.id from dual; -end; -/ CREATE TABLE hrsa_salary_sob_range( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_sob_id NUMBER(38,0) DEFAULT 0, target_type number DEFAULT 1 , target_id NUMBER(38,0) DEFAULT 0, @@ -1442,7 +1321,7 @@ CREATE TABLE hrsa_salary_sob_range( create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -1463,17 +1342,17 @@ end; CREATE TABLE hrsa_salary_template( - id NUMBER(38,0) NOT NULL, - name varchar2(100) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '' , salary_sob_id NUMBER(38,0) NOT NULL, use_type number DEFAULT 0, - description varchar2(100) NOT NULL , + description varchar2(100) DEFAULT '', email_status number DEFAULT 0, send_email_id NUMBER(38,0) DEFAULT 0, msg_status number DEFAULT 0, - theme varchar2(100) NOT NULL , - background varchar2(2000) NOT NULL , - text_content varchar2(100) NOT NULL , + theme varchar2(100) DEFAULT '' , + background varchar2(2000) DEFAULT '' , + text_content varchar2(100) DEFAULT '' , text_content_position number DEFAULT 0, salary_item_null_status number DEFAULT 0, salary_item_zero_status number DEFAULT 0, @@ -1482,7 +1361,7 @@ CREATE TABLE hrsa_salary_template( update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -1503,7 +1382,7 @@ end; CREATE TABLE hrsa_scheme_detail( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, insurance_id NUMBER(38,0) NOT NULL, primary_id NUMBER(38,0) NOT NULL, effective_time varchar2(20) NULL, @@ -1520,7 +1399,7 @@ CREATE TABLE hrsa_scheme_detail( update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1541,15 +1420,15 @@ end; CREATE TABLE hrsa_sob_default_emp_field( - id NUMBER(38,0) NOT NULL, - field_code varchar2(30) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + field_code varchar2(30) DEFAULT '' , sorted_index number DEFAULT 0, can_delete number DEFAULT 0, creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1570,37 +1449,22 @@ end; CREATE TABLE hrsa_sob_default_item_group( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, income_category number DEFAULT 1 , - name varchar2(100) NOT NULL , + name varchar2(100) DEFAULT '', sorted_index number DEFAULT 0, - description varchar2(1000) NOT NULL , + description varchar2(1000) DEFAULT '', create_time date NOT NULL, update_time date NOT NULL, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) - / -CREATE sequence hrsa_sob_default_i_g_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_sob_default_i_g_Tri -before insert on hrsa_sob_default_item_group -for each row -begin -select hrsa_sob_default_i_g_id.nextval into :new.id from dual; -end; -/ - CREATE TABLE hrsa_social_archives( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, employee_id number NOT NULL, non_payment number NULL, welfare_type number NOT NULL, @@ -1614,7 +1478,7 @@ CREATE TABLE hrsa_social_archives( create_time date NOT NULL, update_time date NOT NULL, creator number NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1636,7 +1500,7 @@ end; CREATE TABLE hrsa_social_archives_encdata( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, tablename varchar2(50) NOT NULL, fieldname varchar2(50) NOT NULL, enc_value varchar2(4000) NOT NULL, @@ -1667,18 +1531,18 @@ end; CREATE TABLE hrsa_social_security_scheme( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, payment_area varchar2(100) NOT NULL, payment_type number DEFAULT 1 , scheme_name varchar2(100) NOT NULL, welfare_type number NOT NULL, is_use number DEFAULT 1 , - remarks varchar2(30) NULL, + remarks varchar2(30) DEFAULT '', create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator number DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) / @@ -1699,9 +1563,9 @@ end; CREATE TABLE hrsa_sys_salary_item( - id NUMBER(38,0) NOT NULL, - name varchar2(100) NOT NULL, - code varchar2(100) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '', + code varchar2(100) DEFAULT '', system_type number DEFAULT 0, category number DEFAULT 7 , item_type number DEFAULT 1 , @@ -1712,12 +1576,12 @@ CREATE TABLE hrsa_sys_salary_item( value_type number DEFAULT 1 , datasource number DEFAULT 0, formula_id NUMBER(38,0) DEFAULT 0, - description varchar2(1000) NOT NULL , + description varchar2(1000) DEFAULT '', can_edit number DEFAULT 1 , can_delete number DEFAULT 1 , creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL , + tenant_key varchar2(10) DEFAULT '', create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, data_type varchar2(20) NOT NULL @@ -1741,14 +1605,14 @@ end; CREATE TABLE hrsa_sys_tax_rate_base( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, name varchar2(100) NOT NULL, system_type number NOT NULL, description varchar2(100) NOT NULL, create_time date NOT NULL, update_time date NOT NULL, creator number NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1770,7 +1634,7 @@ end; CREATE TABLE hrsa_sys_tax_rate_detail( - id number NOT NULL, + id number PRIMARY KEY NOT NULL, base_id number NOT NULL, index_num number NOT NULL, income_lower_limit number(15, 5) NULL, @@ -1784,7 +1648,7 @@ CREATE TABLE hrsa_sys_tax_rate_detail( create_time date NOT NULL, update_time date NOT NULL, creator number NOT NULL, - delete_type number NOT NULL, + delete_type number DEFAULT 0, tenant_key varchar2(10) NOT NULL ) @@ -1807,14 +1671,14 @@ end; CREATE TABLE hrsa_tax_agent( - id number NOT NULL, - name varchar2(100) NOT NULL , - description varchar2(100) NOT NULL , + id number PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '', + description varchar2(100) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator number DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1836,16 +1700,16 @@ end; CREATE TABLE hrsa_tax_declaration( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, salary_month date DEFAULT to_date('1900-01-01','YYYY-DD-mm'), tax_cycle date DEFAULT to_date('1900-01-01','YYYY-DD-mm'), tax_agent_id number DEFAULT 0, - description varchar2(1000) NOT NULL , + description varchar2(1000) DEFAULT '', creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1870,41 +1734,27 @@ CREATE TABLE hrsa_tax_declaration_detail( id NUMBER(38,0) NOT NULL, tax_declaration_id NUMBER(38,0) DEFAULT 0, employee_id NUMBER(38,0) DEFAULT 0, - field_code varchar2(100) NOT NULL , - field_value varchar2(1000) NOT NULL , + field_code varchar2(100) DEFAULT '' , + field_value varchar2(1000) DEFAULT '' , creator NUMBER(38,0) DEFAULT 0, create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL -) + tenant_key varchar2(10) DEFAULT '' +) / -CREATE sequence hrsa_tax_d_d_id -start with 1 -increment by 1 -nomaxvalue -nocycle -/ -create or replace trigger hrsa_tax_d_d_Tri -before insert on hrsa_tax_declaration_detail -for each row -begin -select hrsa_tax_d_d_id.nextval into :new.id from dual; -end; -/ - CREATE TABLE hrsa_tax_rate_base( - id NUMBER(38,0) NOT NULL, - name varchar2(100) NOT NULL , + id NUMBER(38,0) PRIMARY KEY NOT NULL, + name varchar2(100) DEFAULT '' , system_type number DEFAULT 0, - description varchar2(100) NOT NULL , + description varchar2(100) DEFAULT '' , create_time DATE DEFAULT sysdate, update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1927,7 +1777,7 @@ end; CREATE TABLE hrsa_tax_rate_detail( - id NUMBER(38,0) NOT NULL, + id NUMBER(38,0) PRIMARY KEY NOT NULL, base_id NUMBER(38,0) DEFAULT 0, index_num number DEFAULT 0, income_upper_limit number(15, 5) DEFAULT 0.00000, @@ -1942,7 +1792,7 @@ CREATE TABLE hrsa_tax_rate_detail( update_time DATE DEFAULT sysdate, creator NUMBER(38,0) DEFAULT 0, delete_type number DEFAULT 0, - tenant_key varchar2(10) NOT NULL + tenant_key varchar2(10) DEFAULT '' ) @@ -1971,192 +1821,228 @@ ALTER TABLE hrsa_salary_sob_item ADD can_delete number NULL -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214787, '����н��ϼ�', 'wagesTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651736817711, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 'number') + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214787, '¹¤×Êн½ðºÏ¼Æ', 'wagesTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651736817711, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214788, 'ȫ��һ���Խ���ϼ�', 'annualBonusTotal', 1, 5, 22, 0, 0, 2, 2, 2, 1, 1651737358294, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:07','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214788, 'È«ÄêÒ»´ÎÐÔ½±½ðºÏ¼Æ', 'annualBonusTotal', 1, 5, 22, 0, 0, 2, 2, 2, 1, 1651737358294, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:07','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214789, '˰ǰ�ۿ�ϼ�', 'preTaxDeductionsTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651737635353, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:22','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214789, '˰ǰ¿Û¿îºÏ¼Æ', 'preTaxDeductionsTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651737635353, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:22','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214790, '���£��Σ�Ӧ˰����ϼ�', 'income', 1, 5, 22, 1, 0, 2, 2, 2, 0, 1651737859216, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:25','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214790, '±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ', 'income', 1, 5, 22, 1, 0, 2, 2, 2, 0, 1651737859216, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:25','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214791, '��ǰ�ۼ�Ӧ˰����ϼ�', 'addUpIncome', 1, 5, 22, 1, 0, 2, 2, 2, 0, 1651738034028, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:28','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214791, 'µ±Ç°ÀÛ¼ÆÓ¦Ë°ÊÕÈëºÏ¼Æ', 'addUpIncome', 1, 5, 22, 1, 0, 2, 2, 2, 0, 1651738034028, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:28','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214792, '���ϸ���', 'endowmentInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651749914746, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214792, 'ÑøÀϸöÈË', 'endowmentInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651749914746, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214793, 'ҽ�Ƹ���', 'medicalInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651749958879, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214793, 'Ò½ÁƸöÈË', 'medicalInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651749958879, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214795, 'ʧҵ����', 'unemploymentInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651750005281, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214795, 'ʧҵ¸öÈË', 'unemploymentInsurance', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651750005281, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214796, '���������', 'housingProvidentFund', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651750034689, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214796, '¹«»ý½ð¸öÈË', 'housingProvidentFund', 1, 2, 10, 1, 0, 2, 2, 2, 7, 1651750034689, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214797, '���£��Σ�ר��۳��ϼ�', 'specialDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 7, 1651738826550, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:40','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214797, '±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ', 'specialDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 7, 1651738826550, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:40','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214798, '��ǰ�ۼ�ר��۳��ϼ�', 'addUpSpecialDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 7, 1651739000845, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214798, 'µ±Ç°ÀÛ¼Æ×¨Ïî¿Û³ýºÏ¼Æ', 'addUpSpecialDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 7, 1651739000845, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214799, '�ۼ���Ů����', 'addUpChildEducation', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739053212, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214799, 'ÀÛ¼Æ×ÓÅ®½ÌÓý', 'addUpChildEducation', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739053212, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214800, '�ۼ�ס��������Ϣ', 'addUpHousingLoannumbererest', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739100651, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214800, 'ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢', 'addUpHousingLoannumbererest', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739100651, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214801, '�ۼ�ס�����', 'addUpHousingRent', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739151122, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214801, 'ÀÛ¼Æ×¡·¿×â½ð', 'addUpHousingRent', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739151122, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214802, '�ۼƼ�������', 'addUpContinuingEducation', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739212437, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214802, 'ÀۼƼÌÐø½ÌÓý', 'addUpContinuingEducation', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739212437, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214803, '�ۼ���������', 'addUpSupportElderly', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739310959, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214803, 'ÀÛ¼ÆÉÄÑøÀÏÈË', 'addUpSupportElderly', 1, 2, 11, 1, 0, 2, 2, 2, 6, 1651739310959, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214804, '��ǰ�ۼ�ר��ӿ۳��ϼ�', 'addUpSpeAddiDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 6, 1651739411365, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214804, 'µ±Ç°ÀÛ¼Æ×¨Ï¼Ó¿Û³ýºÏ¼Æ', 'addUpSpeAddiDeduction', 1, 5, 22, 1, 0, 2, 2, 2, 6, 1651739411365, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214805, '���£��Σ������۳��ϼ�', 'otherDeduction', 1, 5, 22, 0, 0, 2, 2, 2, 8, 1651739815651, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214805, '±¾Ô£¨´Î£©ÆäËû¿Û³ýºÏ¼Æ', 'otherDeduction', 1, 5, 22, 0, 0, 2, 2, 2, 8, 1651739815651, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214806, '��ǰ�ۼ������۳��ϼ�', 'addUpOtherDeduction', 1, 5, 22, 0, 0, 2, 2, 2, 5, 1651740238860, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214806, 'µ±Ç°ÀÛ¼ÆÆäËû¿Û³ýºÏ¼Æ', 'addUpOtherDeduction', 1, 5, 22, 0, 0, 2, 2, 2, 5, 1651740238860, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214807, '���£��Σ���������', 'subtraction', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651740311026, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:56:11','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214807, '±¾Ô£¨´Î£©¼õ³ý·ÑÓÃ', 'subtraction', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651740311026, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:56:11','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214808, '��ǰ�ۼƼ�������', 'addUpSubtraction', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651740397225, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214808, 'µ±Ç°ÀۼƼõ³ý·ÑÓÃ', 'addUpSubtraction', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651740397225, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:32:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214809, '���£��Σ�����н��˰˰��', 'taxRate', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651742185837, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214809, '±¾Ô£¨´Î£©¹¤×Êн½ð˰˰ÂÊ', 'taxRate', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651742185837, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214810, '���£��Σ�����н��˰����۳���', 'quickDeductionFactor', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651742702735, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214810, '±¾Ô£¨´Î£©¹¤×Êн½ð˰ËÙËã¿Û³ýÊý', 'quickDeductionFactor', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651742702735, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214811, '��ǰ�ۼ�Ӧ��˰���ö�', 'addUpTaxableIncome', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651745445982, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:12','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214811, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 'addUpTaxableIncome', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651745445982, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:12','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214812, '��ǰ�ۼ�Ӧ��˰��', 'addUpTaxPayable', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651748888864, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:14','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214812, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰¶î', 'addUpTaxPayable', 1, 7, 19, 1, 0, 2, 2, 2, 1, 1651748888864, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:14','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214813, '��ǰ�ۼ��ѿ۽�˰��ϼ�', 'addUpAdvanceTax', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651748978482, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:18','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214813, 'µ±Ç°ÀÛ¼ÆÒѿ۽É˰¶îºÏ¼Æ', 'addUpAdvanceTax', 1, 5, 22, 1, 0, 2, 2, 2, 5, 1651748978482, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:18','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214814, '���£��Σ�Ӧ��˰��', 'refundedOrSupplementedTax', 1, 6, 16, 1, 0, 2, 2, 2, 1, 1651749111981,' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214814, '±¾Ô£¨´Î£©Ó¦²¹Ë°¶î', 'refundedOrSupplementedTax', 1, 6, 16, 1, 0, 2, 2, 2, 1, 1651749111981,' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214815, '���£��Σ�ʵ��н�ʺϼ�', 'netSalaryTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651749240004, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:24','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674853617092214815, '±¾Ô£¨´Î£©Êµ·¢Ð½×ʺϼÆ', 'netSalaryTotal', 1, 5, 22, 1, 0, 2, 2, 2, 1, 1651749240004, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:04:24','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861648655892480, '��������', 'baseSalary', 1, 1, 1, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:57:46','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861648655892480, '»ù±¾¹¤×Ê', 'baseSalary', 1, 1, 1, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:57:46','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861768948531201, '�����', 'postSalary', 1, 1, 1, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:57:57','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861768948531201, '¸Úλ¹¤×Ê', 'postSalary', 1, 1, 1, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:57:57','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861880508628992, '���ڿۿ�', 'attendanceDeduction', 1, 2, 9, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:04','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674861880508628992, '¿¼ÇÚ¿Û¿î', 'attendanceDeduction', 1, 2, 9, 1, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:04','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093121, '˰�����ϼ�', 'afterTaxReimbursementTotal', 1, 5, 22, 0, 0, 3, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:06','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093121, '˰ºó±¨ÏúºÏ¼Æ', 'afterTaxReimbursementTotal', 1, 5, 22, 0, 0, 3, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:06','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093122, '������', 'annuity', 1, 2, 12, 0, 0, 2, 2, 2, 7, 1651749398360, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093122, 'Äê½ð¸öÈË', 'annuity', 1, 2, 12, 0, 0, 2, 2, 2, 7, 1651749398360, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093123, '��ҵ��������', 'commercialHealthInsurance', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749448800, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093123, 'ÉÌÒµ½¡¿µ±£ÏÕ', 'commercialHealthInsurance', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749448800, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093124, '˰�����ϱ���', 'taxDeferredEndowmentInsurance', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749487187, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093124, '˰ÑÓÑøÀϱ£ÏÕ', 'taxDeferredEndowmentInsurance', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749487187, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093125, '�Ʋ�ԭֵ', 'originalValueOfProperty', 1, 2, 12, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:29','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093125, '²Æ²úÔ­Öµ', 'originalValueOfProperty', 1, 2, 12, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:29','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093126, '����۳���˰��', 'deductedTax', 1, 2, 12, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:42','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093126, 'ÔÊÐí¿Û³ýµÄ˰·Ñ', 'deductedTax', 1, 2, 12, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:42','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093127, '����', 'other', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749540147, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093127, 'ÆäËû', 'other', 1, 2, 12, 0, 0, 2, 2, 2, 8, 1651749540147, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093128, '���£��Σ�����', 'fee', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093128, '±¾Ô£¨´Î£©·ÑÓÃ', 'fee', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093129, '���£��Σ���˰����', 'taxFreeIncome', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:54','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093129, '±¾Ô£¨´Î£©Ãâ˰ÊÕÈë', 'taxFreeIncome', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:58:54','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093130, '������˰����', 'lessTaxProportion', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674914626953093130, '¼õ°´¼ÆË°±ÈÀý', 'lessTaxProportion', 1, 7, 19, 0, 0, 2, 2, 1, 0, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646657, '˰������ϼ�', 'afterTaxAdjustmentTotal', 1, 5, 22, 0, 0, 2, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:59:09','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646657, '˰ºóµ÷ÕûºÏ¼Æ', 'afterTaxAdjustmentTotal', 1, 5, 22, 0, 0, 2, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:59:09','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646658, '��ǰ�ۼƼ���˰��ϼ�', 'addUpTaxDeduction', 1, 5, 22, 0, 0, 2, 2, 1, 5, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646658, 'µ±Ç°ÀۼƼõÃâ˰¶îºÏ¼Æ', 'addUpTaxDeduction', 1, 5, 22, 0, 0, 2, 2, 1, 5, 0, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646659, '���£��Σ�׼�ʿ۳��ľ�����', 'allowedDonation', 1, 5, 22, 0, 0, 2, 2, 2, 8, 1651749595061, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646659, '±¾Ô£¨´Î£©×¼Ôʿ۳ýµÄ¾èÔù¶î', 'allowedDonation', 1, 5, 22, 0, 0, 2, 2, 2, 8, 1651749595061, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646660, '��ǰ�ۼ�׼���۳��ľ�����', 'addUpAllowedDonation', 1, 5, 22, 0, 0, 2, 2, 2, 5, 1651749675268, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646660, 'µ±Ç°ÀÛ¼Æ×¼±¸¿Û³ýµÄ¾èÔù¶î', 'addUpAllowedDonation', 1, 5, 22, 0, 0, 2, 2, 2, 5, 1651749675268, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 15:54:31','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646661, '���£��Σ�����˰��', 'taxDeduction', 1, 5, 22, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:25','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646661, '±¾Ô£¨´Î£©¼õÃâ˰¶î', 'taxDeduction', 1, 5, 22, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:25','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646662, '˰��ۿ�ϼ�', 'afterTaxDeductionsTotal', 1, 5, 22, 0, 0, 2, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:37','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674916065864646662, '˰ºó¿Û¿îºÏ¼Æ', 'afterTaxDeductionsTotal', 1, 5, 22, 0, 0, 2, 2, 1, 1, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:37','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919424520683521, '˰��ۿ�', 'afterTaxDeductions', 1, 4, 15, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:39','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919424520683521, '˰ºó¿Û¿î', 'afterTaxDeductions', 1, 4, 15, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:39','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919682288984064, '˰����', 'afterTaxReimbursement', 1, 3, 13, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:40','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919682288984064, '˰ºó±¨Ïú', 'afterTaxReimbursement', 1, 3, 13, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:40','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919776783499264, '˰�����', 'afterTaxAdjustment', 1, 3, 14, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:48','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674919776783499264, '˰ºóµ÷Õû', 'afterTaxAdjustment', 1, 3, 14, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:48','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674920588574261248, '���ս�', 'annualBonus', 1, 1, 2, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:51','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (674920588574261248, 'ÄêÖÕ½±', 'annualBonus', 1, 1, 2, 0, 0, 2, 2, 1, 0, 0, ' ', 1, 1, 0, 0, 'all_teams', to_date('2022-03-28 10:33:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:00:51','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697532371614588928, '��ǰ�ۼ��籣���˺ϼ�', 'addUpSocialSecurityTotal', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801433504, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:44:23','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697532371614588928, 'µ±Ç°ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ', 'addUpSocialSecurityTotal', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801433504, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:44:23','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697532667749400576, '��ǰ�ۼƹ�������˺ϼ�', 'addUpAccumulationFundTotal', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801586972, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:40','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697532667749400576, 'µ±Ç°Àۼƹ«»ý½ð¸öÈ˺ϼÆ', 'addUpAccumulationFundTotal', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801586972, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:40','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697536344384012289, '��ǰ�ۼ���ҵ��ְҵ����������������˺ϼ�', 'addUpEnterpriseAndOther', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801667770, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:48:07','yyyy-MM-dd HH24:mi:ss'), 'number') +INSERT into hrsa_sys_salary_item(id, name, code, system_type, category, item_type, use_default, use_in_employee_salary, rounding_mode, pattern, value_type, datasource, formula_id, description, can_edit, can_delete, creator, delete_type, tenant_key, create_time, update_time, data_type) VALUES (697536344384012289, 'µ±Ç°ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû¸öÈ˺ϼÆ', 'addUpEnterpriseAndOther', 1, 7, 1, 1, 0, 2, 2, 2, 0, 1651801667770, ' ', 0, 1, 0, 0, 'all_teams', to_date('2022-03-07 10:22:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:48:07','yyyy-MM-dd HH24:mi:ss'), 'number') / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651736817711, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.��������}+{н����Ŀ.�����}', 'salaryItem_baseSalary+salaryItem_postSalary', 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651736817711, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.»ù±¾¹¤×Ê}+{н×ÊÏîÄ¿.¸Úλ¹¤×Ê}', 'salaryItem_baseSalary+salaryItem_postSalary', 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737358294, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���ս�}', 'salaryItem_annualBonus', 1, 0, to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737358294, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.ÄêÖÕ½±}', 'salaryItem_annualBonus', 1, 0, to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737635353, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���ڿۿ�}', 'salaryItem_attendanceDeduction', 1, 0, to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737635353, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.¿¼ÇÚ¿Û¿î}', 'salaryItem_attendanceDeduction', 1, 0, to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737859216, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.����н��ϼ�}+{н����Ŀ.ȫ��һ���Խ���ϼ�}-{н����Ŀ.˰ǰ�ۿ�ϼ�}', 'salaryItem_wagesTotal+salaryItem_annualBonusTotal-salaryItem_preTaxDeductionsTotal', 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651737859216, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.¹¤×Êн½ðºÏ¼Æ}+{н×ÊÏîÄ¿.È«ÄêÒ»´ÎÐÔ½±½ðºÏ¼Æ}-{н×ÊÏîÄ¿.˰ǰ¿Û¿îºÏ¼Æ}', 'salaryItem_wagesTotal+salaryItem_annualBonusTotal-salaryItem_preTaxDeductionsTotal', 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651738034028, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ�Ӧ˰����ϼ�}+{�����ۼ����.�ۼ������}', 'salaryItem_income+addUpSituation_addUpIncome', 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651738034028, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÊÕÈë¶î}', 'salaryItem_income+addUpSituation_addUpIncome', 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749914746, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.���ϱ��ո���}', 'welfare_9001socialPer', 1, 0, to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749914746, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.ÑøÀϱ£ÏÕ¸öÈË}', 'welfare_9001socialPer', 1, 0, to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749958879, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.ҽ�Ʊ��ո���}', 'welfare_9002socialPer', 1, 0, to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749958879, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.Ò½ÁƱ£ÏÕ¸öÈË}', 'welfare_9002socialPer', 1, 0, to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651750005281, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.ʧҵ���ո���}', 'welfare_9004socialPer', 1, 0, to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651750005281, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.ʧҵ±£ÏÕ¸öÈË}', 'welfare_9004socialPer', 1, 0, to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651750034689, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.ס�����������}', 'welfare_9006fundPer', 1, 0, to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651750034689, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.ס·¿¹«»ý½ð¸öÈË}', 'welfare_9006fundPer', 1, 0, to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651738826550, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���ϸ���}+{н����Ŀ.ҽ�Ƹ���}+{н����Ŀ.ʧҵ����}+{н����Ŀ.���������}', 'salaryItem_endowmentInsurance+salaryItem_medicalInsurance+salaryItem_unemploymentInsurance+salaryItem_housingProvidentFund', 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651738826550, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.ÑøÀϸöÈË}+{н×ÊÏîÄ¿.Ò½ÁƸöÈË}+{н×ÊÏîÄ¿.ʧҵ¸öÈË}+{н×ÊÏîÄ¿.¹«»ý½ð¸öÈË}', 'salaryItem_endowmentInsurance+salaryItem_medicalInsurance+salaryItem_unemploymentInsurance+salaryItem_housingProvidentFund', 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739000845, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ�ר��۳��ϼ�}+{�����ۼ����.�ۼ��籣���˺ϼ�}+{�����ۼ����.�ۼƹ�������˺ϼ�}', 'salaryItem_specialDeduction+addUpSituation_addUpSocialSecurityTotal+addUpSituation_addUpAccumulationFundTotal', 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739000845, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.Àۼƹ«»ý½ð¸öÈ˺ϼÆ}', 'salaryItem_specialDeduction+addUpSituation_addUpSocialSecurityTotal+addUpSituation_addUpAccumulationFundTotal', 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739053212, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�ۼ�ר��ӿ۳�.�ۼ���Ů����}', 'addUpDeductions_addUpChildEducation', 1, 0, to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739053212, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÀÛ¼Æ×¨Ï¼Ó¿Û³ý.ÀÛ¼Æ×ÓÅ®½ÌÓý}', 'addUpDeductions_addUpChildEducation', 1, 0, to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739100651, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�����ۼ����.�ۼ�ס��������Ϣ}', 'addUpSituation_addUpHousingLoannumbererest', 1, 0, to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739100651, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢}', 'addUpSituation_addUpHousingLoannumbererest', 1, 0, to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739151122, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�����ۼ����.�ۼ�ס�����}', 'addUpSituation_addUpHousingRent', 1, 0, to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739151122, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¡·¿×â½ð}', 'addUpSituation_addUpHousingRent', 1, 0, to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739212437, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�����ۼ����.�ۼƼ�������}', 'addUpSituation_addUpContinuingEducation', 1, 0, to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739212437, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀۼƼÌÐø½ÌÓý}', 'addUpSituation_addUpContinuingEducation', 1, 0, to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739310959, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�����ۼ����.�ۼ���������}', 'addUpSituation_addUpSupportElderly', 1, 0, to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739310959, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉÄÑøÀÏÈË}', 'addUpSituation_addUpSupportElderly', 1, 0, to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739411365, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.�ۼ���Ů����}+{н����Ŀ.�ۼ�ס��������Ϣ}+{н����Ŀ.�ۼ�ס�����}+{н����Ŀ.�ۼƼ�������}+{н����Ŀ.�ۼ���������}', 'salaryItem_addUpChildEducation+salaryItem_addUpHousingLoannumbererest+salaryItem_addUpHousingRent+salaryItem_addUpContinuingEducation+salaryItem_addUpSupportElderly', 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739411365, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.ÀÛ¼Æ×ÓÅ®½ÌÓý}+{н×ÊÏîÄ¿.ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢}+{н×ÊÏîÄ¿.ÀÛ¼Æ×¡·¿×â½ð}+{н×ÊÏîÄ¿.ÀۼƼÌÐø½ÌÓý}+{н×ÊÏîÄ¿.ÀÛ¼ÆÉÄÑøÀÏÈË}', 'salaryItem_addUpChildEducation+salaryItem_addUpHousingLoannumbererest+salaryItem_addUpHousingRent+salaryItem_addUpContinuingEducation+salaryItem_addUpSupportElderly', 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739815651, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.������}+{н����Ŀ.��ҵ��������}+{н����Ŀ.˰�����ϱ���}+{н����Ŀ.�Ʋ�ԭֵ}+{н����Ŀ.����۳���˰��}+{н����Ŀ.����}', 'salaryItem_annuity+salaryItem_commercialHealthInsurance+salaryItem_taxDeferredEndowmentInsurance+salaryItem_originalValueOfProperty+salaryItem_deductedTax+salaryItem_other', 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651739815651, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.Äê½ð¸öÈË}+{н×ÊÏîÄ¿.ÉÌÒµ½¡¿µ±£ÏÕ}+{н×ÊÏîÄ¿.˰ÑÓÑøÀϱ£ÏÕ}+{н×ÊÏîÄ¿.²Æ²úÔ­Öµ}+{н×ÊÏîÄ¿.ÔÊÐí¿Û³ýµÄ˰·Ñ}+{н×ÊÏîÄ¿.ÆäËû}', 'salaryItem_annuity+salaryItem_commercialHealthInsurance+salaryItem_taxDeferredEndowmentInsurance+salaryItem_originalValueOfProperty+salaryItem_deductedTax+salaryItem_other', 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740238860, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ������۳��ϼ�}+{�����ۼ����.�ۼ�������˰�۳�}+{�����ۼ����.�ۼ���ҵ��ְҵ�������������}', 'salaryItem_otherDeduction+addUpSituation_addUpOtherDeduction+addUpSituation_addUpEnterpriseAndOther', 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740238860, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©ÆäËû¿Û³ýºÏ¼Æ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆäËûÃâ˰¿Û³ý}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû}', 'salaryItem_otherDeduction+addUpSituation_addUpOtherDeduction+addUpSituation_addUpEnterpriseAndOther', 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740311026, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '5000', '5000', 1, 0, to_date('2022-05-05 16:45:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:45:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740311026, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '5000', '5000', 1, 0, to_date('2022-05-05 16:45:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:45:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740397225, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ���������}+{�����ۼ����.�ۼƼ�������}', 'salaryItem_subtraction+addUpSituation_addUpSubtraction', 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651740397225, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¼õ³ý·ÑÓÃ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀۼƼõ³ý·ÑÓÃ}', 'salaryItem_subtraction+addUpSituation_addUpSubtraction', 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type,extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651742185837, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', 'if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=0){0;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=36000){0.03;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=144000){0.1;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=300000){0.2;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=420000){0.25;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=660000){0.3;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=960000){0.35;}else{0.45;}', 'if(salaryItem_addUpTaxableIncome<=0){0;}else if(salaryItem_addUpTaxableIncome<=36000){0.03;}else if(salaryItem_addUpTaxableIncome<=144000){0.1;}else if(salaryItem_addUpTaxableIncome<=300000){0.2;}else if(salaryItem_addUpTaxableIncome<=420000){0.25;}else if(salaryItem_addUpTaxableIncome<=660000){0.3;}else if(salaryItem_addUpTaxableIncome<=960000){0.35;}else{0.45;}', 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type,extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651742185837, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', 'if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=0){0;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=36000){0.03;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=144000){0.1;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=300000){0.2;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=420000){0.25;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=660000){0.3;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=960000){0.35;}else{0.45;}', 'if(salaryItem_addUpTaxableIncome<=0){0;}else if(salaryItem_addUpTaxableIncome<=36000){0.03;}else if(salaryItem_addUpTaxableIncome<=144000){0.1;}else if(salaryItem_addUpTaxableIncome<=300000){0.2;}else if(salaryItem_addUpTaxableIncome<=420000){0.25;}else if(salaryItem_addUpTaxableIncome<=660000){0.3;}else if(salaryItem_addUpTaxableIncome<=960000){0.35;}else{0.45;}', 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651742702735, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', 'if(<=36000){{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=36000){0;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=144000){2520;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=300000){16920;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=420000){31920;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=660000){52920;}else if({н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}<=960000){85920;}else{181920;}', 'if(<=36000){salaryItem_addUpTaxableIncome<=36000){0;}else if(salaryItem_addUpTaxableIncome<=144000){2520;}else if(salaryItem_addUpTaxableIncome<=300000){16920;}else if(salaryItem_addUpTaxableIncome<=420000){31920;}else if(salaryItem_addUpTaxableIncome<=660000){52920;}else if(salaryItem_addUpTaxableIncome<=960000){85920;}else{181920;}', 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651742702735, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', 'if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=36000){{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=36000){0;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=144000){2520;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=300000){16920;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=420000){31920;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=660000){52920;}else if({н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}<=960000){85920;}else{181920;}', 'if(<=36000){salaryItem_addUpTaxableIncome<=36000){0;}else if(salaryItem_addUpTaxableIncome<=144000){2520;}else if(salaryItem_addUpTaxableIncome<=300000){16920;}else if(salaryItem_addUpTaxableIncome<=420000){31920;}else if(salaryItem_addUpTaxableIncome<=660000){52920;}else if(salaryItem_addUpTaxableIncome<=960000){85920;}else{181920;}', 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651745445982, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.��ǰ�ۼ�Ӧ˰����ϼ�}-{н����Ŀ.��ǰ�ۼ�ר��۳��ϼ�}-{н����Ŀ.��ǰ�ۼ�ר��ӿ۳��ϼ�}-{н����Ŀ.��ǰ�ۼ������۳��ϼ�}-{н����Ŀ.��ǰ�ۼƼ�������}-{н����Ŀ.��ǰ�ۼ�׼���۳��ľ�����}', 'salaryItem_addUpIncome-salaryItem_addUpSpecialDeduction-salaryItem_addUpSpeAddiDeduction-salaryItem_addUpOtherDeduction-salaryItem_addUpSubtraction-salaryItem_addUpAllowedDonation', 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651745445982, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦Ë°ÊÕÈëºÏ¼Æ}-{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¨Ïî¿Û³ýºÏ¼Æ}-{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¨Ï¼Ó¿Û³ýºÏ¼Æ}-{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÆäËû¿Û³ýºÏ¼Æ}-{н×ÊÏîÄ¿.µ±Ç°ÀۼƼõ³ý·ÑÓÃ}-{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¼±¸¿Û³ýµÄ¾èÔù¶î}', 'salaryItem_addUpIncome-salaryItem_addUpSpecialDeduction-salaryItem_addUpSpeAddiDeduction-salaryItem_addUpOtherDeduction-salaryItem_addUpSubtraction-salaryItem_addUpAllowedDonation', 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651748888864, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}*{н����Ŀ.���£��Σ�����н��˰˰��}-{н����Ŀ.���£��Σ�����н��˰����۳���}', 'salaryItem_addUpTaxableIncome*salaryItem_taxRate-salaryItem_quickDeductionFactor', 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651748888864, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}*{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¹¤×Êн½ð˰˰ÂÊ}-{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¹¤×Êн½ð˰ËÙËã¿Û³ýÊý}', 'salaryItem_addUpTaxableIncome*salaryItem_taxRate-salaryItem_quickDeductionFactor', 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651748978482, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�����ۼ����.�ۼ���Ԥ��Ԥ��˰��}', 'addUpSituation_addUpAdvanceTax', 1, 0, to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651748978482, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÒÑÔ¤¿ÛÔ¤½É˰¶î}', 'addUpSituation_addUpAdvanceTax', 1, 0, to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749111981, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰��}-{н����Ŀ.��ǰ�ۼ��ѿ۽�˰��ϼ�}-{н����Ŀ.��ǰ�ۼƼ���˰��ϼ�}', 'salaryItem_addUpTaxPayable-salaryItem_addUpAdvanceTax-salaryItem_addUpTaxDeduction', 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749111981, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰¶î}-{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÒѿ۽É˰¶îºÏ¼Æ}-{н×ÊÏîÄ¿.µ±Ç°ÀۼƼõÃâ˰¶îºÏ¼Æ}', 'salaryItem_addUpTaxPayable-salaryItem_addUpAdvanceTax-salaryItem_addUpTaxDeduction', 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749240004, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ�Ӧ˰����ϼ�}-{н����Ŀ.���£��Σ�ר��۳��ϼ�}-{н����Ŀ.���£��Σ�Ӧ��˰��}+{н����Ŀ.˰������ϼ�}+{н����Ŀ.˰�����ϼ�}-{н����Ŀ.˰��ۿ�ϼ�}', 'salaryItem_income-salaryItem_specialDeduction-salaryItem_refundedOrSupplementedTax+salaryItem_afterTaxAdjustmentTotal+salaryItem_afterTaxReimbursementTotal-salaryItem_afterTaxDeductionsTotal', 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749240004, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ}-{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ}-{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦²¹Ë°¶î}+{н×ÊÏîÄ¿.˰ºóµ÷ÕûºÏ¼Æ}+{н×ÊÏîÄ¿.˰ºó±¨ÏúºÏ¼Æ}-{н×ÊÏîÄ¿.˰ºó¿Û¿îºÏ¼Æ}', 'salaryItem_income-salaryItem_specialDeduction-salaryItem_refundedOrSupplementedTax+salaryItem_afterTaxAdjustmentTotal+salaryItem_afterTaxReimbursementTotal-salaryItem_afterTaxDeductionsTotal', 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749398360, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.��ҵ������}', 'welfare_9007otherPer', 1, 0, to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749398360, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.ÆóÒµÄê½ð¸öÈË}', 'welfare_9007otherPer', 1, 0, to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749448800, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{������˰�۳�.��ҵ��������}', 'otherDeduction_businessHealthyInsurance', 1, 0, to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749448800, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÆäËûÃâ˰¿Û³ý.ÉÌÒµ½¡¿µ±£ÏÕ}', 'otherDeduction_businessHealthyInsurance', 1, 0, to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749487187, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{������˰�۳�.˰�����ϱ���}', 'otherDeduction_taxDelayEndowmentInsurance', 1, 0, to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749487187, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÆäËûÃâ˰¿Û³ý.˰ÑÓÑøÀϱ£ÏÕ}', 'otherDeduction_taxDelayEndowmentInsurance', 1, 0, to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749540147, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{������˰�۳�.����}', 'otherDeduction_otherDeduction', 1, 0, to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749540147, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÆäËûÃâ˰¿Û³ý.ÆäËû}', 'otherDeduction_otherDeduction', 1, 0, to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749595061, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{������˰�۳�.׼��۳��ľ�����}', 'otherDeduction_deductionAllowedDonation', 1, 0, to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749595061, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{ÆäËûÃâ˰¿Û³ý.×¼Óè¿Û³ýµÄ¾èÔù¶î}', 'otherDeduction_deductionAllowedDonation', 1, 0, to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749675268, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н����Ŀ.���£��Σ�׼�ʿ۳��ľ�����}+{�����ۼ����.�ۼ�׼��۳��ľ�����}', 'salaryItem_allowedDonation+addUpSituation_addUpAllowedDonation', 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651749675268, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¼Ôʿ۳ýµÄ¾èÔù¶î}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¼Óè¿Û³ýµÄ¾èÔù¶î}', 'salaryItem_allowedDonation+addUpSituation_addUpAllowedDonation', 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801433504, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.�籣���˺ϼ�}+{�����ۼ����.�ۼ��籣���˺ϼ�}', 'welfare_socialPerSum+addUpSituation_addUpSocialSecurityTotal', 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801433504, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.Éç±£¸öÈ˺ϼÆ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ}', 'welfare_socialPerSum+addUpSituation_addUpSocialSecurityTotal', 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801586972, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.��������˺ϼ�}+{�����ۼ����.�ۼƹ�������˺ϼ�}', 'welfare_fundPerSum+addUpSituation_addUpAccumulationFundTotal', 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801586972, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.¹«»ý½ð¸öÈ˺ϼÆ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.Àۼƹ«»ý½ð¸öÈ˺ϼÆ}', 'welfare_fundPerSum+addUpSituation_addUpAccumulationFundTotal', 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801667770, '��ʽ1', '��ע', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{�籣����.�����������˺ϼ�}+{�����ۼ����.�ۼ���ҵ��ְҵ�������������}', 'welfare_otherPerSum+addUpSituation_addUpEnterpriseAndOther', 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, return_type, validate_type, extend_param, formula, formulaRunScript, creator, delete_type, create_time, update_time) VALUES (1651801667770, '¹«Ê½1', '±¸×¢', 'salary', 'salaryitem', 'formula', 'number', 'number', '{}', '{Éç±£¸£Àû.ÆäËû¸£Àû¸öÈ˺ϼÆ}+{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû}', 'welfare_otherPerSum+addUpSituation_addUpEnterpriseAndOther', 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) / @@ -2164,177 +2050,177 @@ INSERT into hrsa_formula(id, name, description, module, use_for, reference_type, -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651736818266, '��������', 1651736817711, 'salaryItem_baseSalary', '{н����Ŀ.��������}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651736818266, '»ù±¾¹¤×Ê', 1651736817711, 'salaryItem_baseSalary', '{н×ÊÏîÄ¿.»ù±¾¹¤×Ê}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651736818329, '�����', 1651736817711, 'salaryItem_postSalary', '{н����Ŀ.�����}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651736818329, '¸Úλ¹¤×Ê', 1651736817711, 'salaryItem_postSalary', '{н×ÊÏîÄ¿.¸Úλ¹¤×Ê}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:46:58','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737360610, '���ս�', 1651737358294, 'salaryItem_annualBonus', '{н����Ŀ.���ս�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737360610, 'ÄêÖÕ½±', 1651737358294, 'salaryItem_annualBonus', '{н×ÊÏîÄ¿.ÄêÖÕ½±}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 15:55:58','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737636061, '���ڿۿ�', 1651737635353, 'salaryItem_attendanceDeduction', '{н����Ŀ.���ڿۿ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737636061, '¿¼ÇÚ¿Û¿î', 1651737635353, 'salaryItem_attendanceDeduction', '{н×ÊÏîÄ¿.¿¼ÇÚ¿Û¿î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:00:35','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859281, '����н��ϼ�', 1651737859216, 'salaryItem_wagesTotal', '{н����Ŀ.����н��ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859281, '¹¤×Êн½ðºÏ¼Æ', 1651737859216, 'salaryItem_wagesTotal', '{н×ÊÏîÄ¿.¹¤×Êн½ðºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859342, 'ȫ��һ���Խ���ϼ�', 1651737859216, 'salaryItem_annualBonusTotal', '{н����Ŀ.ȫ��һ���Խ���ϼ�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859342, 'È«ÄêÒ»´ÎÐÔ½±½ðºÏ¼Æ', 1651737859216, 'salaryItem_annualBonusTotal', '{н×ÊÏîÄ¿.È«ÄêÒ»´ÎÐÔ½±½ðºÏ¼Æ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859401, '˰ǰ�ۿ�ϼ�', 1651737859216, 'salaryItem_preTaxDeductionsTotal', '{н����Ŀ.˰ǰ�ۿ�ϼ�}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651737859401, '˰ǰ¿Û¿îºÏ¼Æ', 1651737859216, 'salaryItem_preTaxDeductionsTotal', '{н×ÊÏîÄ¿.˰ǰ¿Û¿îºÏ¼Æ}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:04:19','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738035450, '���£��Σ�Ӧ˰����ϼ�', 1651738034028, 'salaryItem_income', '{н����Ŀ.���£��Σ�Ӧ˰����ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738035450, '±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ', 1651738034028, 'salaryItem_income', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738035488, '�ۼ������', 1651738034028, 'addUpSituation_addUpIncome', '{�����ۼ����.�ۼ������}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738035488, 'ÀÛ¼ÆÊÕÈë¶î', 1651738034028, 'addUpSituation_addUpIncome', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÊÕÈë¶î}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:07:14','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738832854, '���ϸ���', 1651738826550, 'salaryItem_endowmentInsurance', '{н����Ŀ.���ϸ���}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738832854, 'ÑøÀϸöÈË', 1651738826550, 'salaryItem_endowmentInsurance', '{н×ÊÏîÄ¿.ÑøÀϸöÈË}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738837363, 'ҽ�Ƹ���', 1651738826550, 'salaryItem_medicalInsurance', '{н����Ŀ.ҽ�Ƹ���}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738837363, 'Ò½ÁƸöÈË', 1651738826550, 'salaryItem_medicalInsurance', '{н×ÊÏîÄ¿.Ò½ÁƸöÈË}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738837909, 'ʧҵ����', 1651738826550, 'salaryItem_unemploymentInsurance', '{н����Ŀ.ʧҵ����}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738837909, 'ʧҵ¸öÈË', 1651738826550, 'salaryItem_unemploymentInsurance', '{н×ÊÏîÄ¿.ʧҵ¸öÈË}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738838429, '���������', 1651738826550, 'salaryItem_housingProvidentFund', '{н����Ŀ.���������}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651738838429, '¹«»ý½ð¸öÈË', 1651738826550, 'salaryItem_housingProvidentFund', '{н×ÊÏîÄ¿.¹«»ý½ð¸öÈË}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:20:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739002623, '���£��Σ�ר��۳��ϼ�', 1651739000845, 'salaryItem_specialDeduction', '{н����Ŀ.���£��Σ�ר��۳��ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739002623, '±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ', 1651739000845, 'salaryItem_specialDeduction', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739002682, '�ۼ��籣���˺ϼ�', 1651739000845, 'addUpSituation_addUpSocialSecurityTotal', '{�����ۼ����.�ۼ��籣���˺ϼ�}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739002682, 'ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ', 1651739000845, 'addUpSituation_addUpSocialSecurityTotal', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739003139, '�ۼƹ�������˺ϼ�', 1651739000845, 'addUpSituation_addUpAccumulationFundTotal', '{�����ۼ����.�ۼƹ�������˺ϼ�}', 'number', 'addUpSituation', 2, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739003139, 'Àۼƹ«»ý½ð¸öÈ˺ϼÆ', 1651739000845, 'addUpSituation_addUpAccumulationFundTotal', '{ÍùÆÚÀÛ¼ÆÇé¿ö.Àۼƹ«»ý½ð¸öÈ˺ϼÆ}', 'number', 'addUpSituation', 2, 1, 0, to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:23:21','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739054270, '�ۼ���Ů����', 1651739053212, 'addUpDeductions_addUpChildEducation', '{�ۼ�ר��ӿ۳�.�ۼ���Ů����}', 'number', 'addUpDeductions', 0, 1, 0, to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739054270, 'ÀÛ¼Æ×ÓÅ®½ÌÓý', 1651739053212, 'addUpDeductions_addUpChildEducation', '{ÀÛ¼Æ×¨Ï¼Ó¿Û³ý.ÀÛ¼Æ×ÓÅ®½ÌÓý}', 'number', 'addUpDeductions', 0, 1, 0, to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:24:13','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739101122, '�ۼ�ס��������Ϣ', 1651739100651, 'addUpSituation_addUpHousingLoannumbererest', '{�����ۼ����.�ۼ�ס��������Ϣ}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739101122, 'ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢', 1651739100651, 'addUpSituation_addUpHousingLoannumbererest', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:01','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739151221, '�ۼ�ס�����', 1651739151122, 'addUpSituation_addUpHousingRent', '{�����ۼ����.�ۼ�ס�����}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739151221, 'ÀÛ¼Æ×¡·¿×â½ð', 1651739151122, 'addUpSituation_addUpHousingRent', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¡·¿×â½ð}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:25:51','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739213082, '�ۼƼ�������', 1651739212437, 'addUpSituation_addUpContinuingEducation', '{�����ۼ����.�ۼƼ�������}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739213082, 'ÀۼƼÌÐø½ÌÓý', 1651739212437, 'addUpSituation_addUpContinuingEducation', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀۼƼÌÐø½ÌÓý}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:26:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739311009, '�ۼ���������', 1651739310959, 'addUpSituation_addUpSupportElderly', '{�����ۼ����.�ۼ���������}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739311009, 'ÀÛ¼ÆÉÄÑøÀÏÈË', 1651739310959, 'addUpSituation_addUpSupportElderly', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉÄÑøÀÏÈË}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:28:31','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411502, '�ۼ���Ů����', 1651739411365, 'salaryItem_addUpChildEducation', '{н����Ŀ.�ۼ���Ů����}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411502, 'ÀÛ¼Æ×ÓÅ®½ÌÓý', 1651739411365, 'salaryItem_addUpChildEducation', '{н×ÊÏîÄ¿.ÀÛ¼Æ×ÓÅ®½ÌÓý}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411637, '�ۼ�ס��������Ϣ', 1651739411365, 'salaryItem_addUpHousingLoannumbererest', '{н����Ŀ.�ۼ�ס��������Ϣ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411637, 'ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢', 1651739411365, 'salaryItem_addUpHousingLoannumbererest', '{н×ÊÏîÄ¿.ÀÛ¼Æ×¡·¿´û¿îÀûÏ¢}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411715, '�ۼ�ס�����', 1651739411365, 'salaryItem_addUpHousingRent', '{н����Ŀ.�ۼ�ס�����}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411715, 'ÀÛ¼Æ×¡·¿×â½ð', 1651739411365, 'salaryItem_addUpHousingRent', '{н×ÊÏîÄ¿.ÀÛ¼Æ×¡·¿×â½ð}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411773, '�ۼƼ�������', 1651739411365, 'salaryItem_addUpContinuingEducation', '{н����Ŀ.�ۼƼ�������}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739411773, 'ÀۼƼÌÐø½ÌÓý', 1651739411365, 'salaryItem_addUpContinuingEducation', '{н×ÊÏîÄ¿.ÀۼƼÌÐø½ÌÓý}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739412718, '�ۼ���������', 1651739411365, 'salaryItem_addUpSupportElderly', '{н����Ŀ.�ۼ���������}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739412718, 'ÀÛ¼ÆÉÄÑøÀÏÈË', 1651739411365, 'salaryItem_addUpSupportElderly', '{н×ÊÏîÄ¿.ÀÛ¼ÆÉÄÑøÀÏÈË}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:30:11','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739819892, '������', 1651739815651, 'salaryItem_annuity', '{н����Ŀ.������}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739819892, 'Äê½ð¸öÈË', 1651739815651, 'salaryItem_annuity', '{н×ÊÏîÄ¿.Äê½ð¸öÈË}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739822564, '��ҵ��������', 1651739815651, 'salaryItem_commercialHealthInsurance', '{н����Ŀ.��ҵ��������}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739822564, 'ÉÌÒµ½¡¿µ±£ÏÕ', 1651739815651, 'salaryItem_commercialHealthInsurance', '{н×ÊÏîÄ¿.ÉÌÒµ½¡¿µ±£ÏÕ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739826637, '˰�����ϱ���', 1651739815651, 'salaryItem_taxDeferredEndowmentInsurance', '{н����Ŀ.˰�����ϱ���}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739826637, '˰ÑÓÑøÀϱ£ÏÕ', 1651739815651, 'salaryItem_taxDeferredEndowmentInsurance', '{н×ÊÏîÄ¿.˰ÑÓÑøÀϱ£ÏÕ}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739828954, '�Ʋ�ԭֵ', 1651739815651, 'salaryItem_originalValueOfProperty', '{н����Ŀ.�Ʋ�ԭֵ}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739828954, '²Æ²úÔ­Öµ?', 1651739815651, 'salaryItem_originalValueOfProperty', '{н×ÊÏîÄ¿.²Æ²úÔ­Öµ}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739829915, '����۳���˰��', 1651739815651, 'salaryItem_deductedTax', '{н����Ŀ.����۳���˰��}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739829915, 'ÔÊÐí¿Û³ýµÄ˰·Ñ', 1651739815651, 'salaryItem_deductedTax', '{н×ÊÏîÄ¿.ÔÊÐí¿Û³ýµÄ˰·Ñ}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739830465, '����', 1651739815651, 'salaryItem_other', '{н����Ŀ.����}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651739830465, 'ÆäËû', 1651739815651, 'salaryItem_other', '{н×ÊÏîÄ¿.ÆäËû}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:36:56','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740240713, '���£��Σ������۳��ϼ�', 1651740238860, 'salaryItem_otherDeduction', '{н����Ŀ.���£��Σ������۳��ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740240713, '±¾Ô£¨´Î£©ÆäËû¿Û³ýºÏ¼Æ', 1651740238860, 'salaryItem_otherDeduction', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©ÆäËû¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740241221, '�ۼ�������˰�۳�', 1651740238860, 'addUpSituation_addUpOtherDeduction', '{�����ۼ����.�ۼ�������˰�۳�}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740241221, 'ÀÛ¼ÆÆäËûÃâ˰¿Û³ý', 1651740238860, 'addUpSituation_addUpOtherDeduction', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆäËûÃâ˰¿Û³ý}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740241717, '�ۼ���ҵ��ְҵ�������������', 1651740238860, 'addUpSituation_addUpEnterpriseAndOther', '{�����ۼ����.�ۼ���ҵ��ְҵ�������������}', 'number', 'addUpSituation', 2, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740241717, 'ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû', 1651740238860, 'addUpSituation_addUpEnterpriseAndOther', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû}', 'number', 'addUpSituation', 2, 1, 0, to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:43:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740397497, '���£��Σ���������', 1651740397225, 'salaryItem_subtraction', '{н����Ŀ.���£��Σ���������}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740397497, '±¾Ô£¨´Î£©¼õ³ý·ÑÓÃ', 1651740397225, 'salaryItem_subtraction', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¼õ³ý·ÑÓÃ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740397989, '�ۼƼ�������', 1651740397225, 'addUpSituation_addUpSubtraction', '{�����ۼ����.�ۼƼ�������}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651740397989, 'ÀۼƼõ³ý·ÑÓÃ', 1651740397225, 'addUpSituation_addUpSubtraction', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀۼƼõ³ý·ÑÓÃ}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 16:46:37','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742185950, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742185950, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742185995, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742185995, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186035, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186035, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186085, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186085, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186122, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186122, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186155, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186155, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186199, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 6, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742186199, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742185837, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 6, 1, 0, to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:16:26','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742704826, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742704826, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705308, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705308, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705782, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705782, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705831, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742705831, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742706306, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742706306, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742706368, '��ǰ�ۼ�Ӧ��˰���ö�', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651742706368, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651742702735, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 17:25:03','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745446904, '��ǰ�ۼ�Ӧ˰����ϼ�', 1651745445982, 'salaryItem_addUpIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ˰����ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745446904, 'µ±Ç°ÀÛ¼ÆÓ¦Ë°ÊÕÈëºÏ¼Æ', 1651745445982, 'salaryItem_addUpIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦Ë°ÊÕÈëºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745447442, '��ǰ�ۼ�ר��۳��ϼ�', 1651745445982, 'salaryItem_addUpSpecialDeduction', '{н����Ŀ.��ǰ�ۼ�ר��۳��ϼ�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745447442, 'µ±Ç°ÀÛ¼Æ×¨Ïî¿Û³ýºÏ¼Æ', 1651745445982, 'salaryItem_addUpSpecialDeduction', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¨Ïî¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745447969, '��ǰ�ۼ�ר��ӿ۳��ϼ�', 1651745445982, 'salaryItem_addUpSpeAddiDeduction', '{н����Ŀ.��ǰ�ۼ�ר��ӿ۳��ϼ�}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745447969, 'µ±Ç°ÀÛ¼Æ×¨Ï¼Ó¿Û³ýºÏ¼Æ', 1651745445982, 'salaryItem_addUpSpeAddiDeduction', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¨Ï¼Ó¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745448475, '��ǰ�ۼ������۳��ϼ�', 1651745445982, 'salaryItem_addUpOtherDeduction', '{н����Ŀ.��ǰ�ۼ������۳��ϼ�}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745448475, 'µ±Ç°ÀÛ¼ÆÆäËû¿Û³ýºÏ¼Æ', 1651745445982, 'salaryItem_addUpOtherDeduction', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÆäËû¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745451616, '��ǰ�ۼƼ�������', 1651745445982, 'salaryItem_addUpSubtraction', '{н����Ŀ.��ǰ�ۼƼ�������}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745451616, 'µ±Ç°ÀۼƼõ³ý·ÑÓÃ', 1651745445982, 'salaryItem_addUpSubtraction', '{н×ÊÏîÄ¿.µ±Ç°ÀۼƼõ³ý·ÑÓÃ}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745452097, '��ǰ�ۼ�׼���۳��ľ�����', 1651745445982, 'salaryItem_addUpAllowedDonation', '{н����Ŀ.��ǰ�ۼ�׼���۳��ľ�����}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651745452097, 'µ±Ç°ÀÛ¼Æ×¼±¸¿Û³ýµÄ¾èÔù¶î', 1651745445982, 'salaryItem_addUpAllowedDonation', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼Æ×¼±¸¿Û³ýµÄ¾èÔù¶î}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 18:10:46','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888918, '��ǰ�ۼ�Ӧ��˰���ö�', 1651748888864, 'salaryItem_addUpTaxableIncome', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰���ö�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888918, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î', 1651748888864, 'salaryItem_addUpTaxableIncome', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰ËùµÃ¶î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888952, '���£��Σ�����н��˰˰��', 1651748888864, 'salaryItem_taxRate', '{н����Ŀ.���£��Σ�����н��˰˰��}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888952, '±¾Ô£¨´Î£©¹¤×Êн½ð˰˰ÂÊ', 1651748888864, 'salaryItem_taxRate', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¹¤×Êн½ð˰˰ÂÊ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888989, '���£��Σ�����н��˰����۳���', 1651748888864, 'salaryItem_quickDeductionFactor', '{н����Ŀ.���£��Σ�����н��˰����۳���}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748888989, '±¾Ô£¨´Î£©¹¤×Êн½ð˰ËÙËã¿Û³ýÊý', 1651748888864, 'salaryItem_quickDeductionFactor', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©¹¤×Êн½ð˰ËÙËã¿Û³ýÊý}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:08:09','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748978520, '�ۼ���Ԥ��Ԥ��˰��', 1651748978482, 'addUpSituation_addUpAdvanceTax', '{�����ۼ����.�ۼ���Ԥ��Ԥ��˰��}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651748978520, 'ÀÛ¼ÆÒÑÔ¤¿ÛÔ¤½É˰¶î', 1651748978482, 'addUpSituation_addUpAdvanceTax', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÒÑÔ¤¿ÛÔ¤½É˰¶î}', 'number', 'addUpSituation', 0, 1, 0, to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:09:38','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112037, '��ǰ�ۼ�Ӧ��˰��', 1651749111981, 'salaryItem_addUpTaxPayable', '{н����Ŀ.��ǰ�ۼ�Ӧ��˰��}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112037, 'µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰¶î', 1651749111981, 'salaryItem_addUpTaxPayable', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÓ¦ÄÉ˰¶î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112068, '��ǰ�ۼ��ѿ۽�˰��ϼ�', 1651749111981, 'salaryItem_addUpAdvanceTax', '{н����Ŀ.��ǰ�ۼ��ѿ۽�˰��ϼ�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112068, 'µ±Ç°ÀÛ¼ÆÒѿ۽É˰¶îºÏ¼Æ', 1651749111981, 'salaryItem_addUpAdvanceTax', '{н×ÊÏîÄ¿.µ±Ç°ÀÛ¼ÆÒѿ۽É˰¶îºÏ¼Æ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112116, '��ǰ�ۼƼ���˰��ϼ�', 1651749111981, 'salaryItem_addUpTaxDeduction', '{н����Ŀ.��ǰ�ۼƼ���˰��ϼ�}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749112116, 'µ±Ç°ÀۼƼõÃâ˰¶îºÏ¼Æ', 1651749111981, 'salaryItem_addUpTaxDeduction', '{н×ÊÏîÄ¿.µ±Ç°ÀۼƼõÃâ˰¶îºÏ¼Æ}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:11:52','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240040, '���£��Σ�Ӧ˰����ϼ�', 1651749240004, 'salaryItem_income', '{н����Ŀ.���£��Σ�Ӧ˰����ϼ�}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240040, '±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ', 1651749240004, 'salaryItem_income', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦Ë°ÊÕÈëºÏ¼Æ}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240082, '���£��Σ�ר��۳��ϼ�', 1651749240004, 'salaryItem_specialDeduction', '{н����Ŀ.���£��Σ�ר��۳��ϼ�}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240082, '±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ', 1651749240004, 'salaryItem_specialDeduction', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¨Ïî¿Û³ýºÏ¼Æ}', 'number', 'salaryItem', 1, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240117, '���£��Σ�Ӧ��˰��', 1651749240004, 'salaryItem_refundedOrSupplementedTax', '{н����Ŀ.���£��Σ�Ӧ��˰��}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240117, '±¾Ô£¨´Î£©Ó¦²¹Ë°¶î', 1651749240004, 'salaryItem_refundedOrSupplementedTax', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©Ó¦²¹Ë°¶î}', 'number', 'salaryItem', 2, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240164, '˰������ϼ�', 1651749240004, 'salaryItem_afterTaxAdjustmentTotal', '{н����Ŀ.˰������ϼ�}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240164, '˰ºóµ÷ÕûºÏ¼Æ', 1651749240004, 'salaryItem_afterTaxAdjustmentTotal', '{н×ÊÏîÄ¿.˰ºóµ÷ÕûºÏ¼Æ}', 'number', 'salaryItem', 3, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240199, '˰�����ϼ�', 1651749240004, 'salaryItem_afterTaxReimbursementTotal', '{н����Ŀ.˰�����ϼ�}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240199, '˰ºó±¨ÏúºÏ¼Æ', 1651749240004, 'salaryItem_afterTaxReimbursementTotal', '{н×ÊÏîÄ¿.˰ºó±¨ÏúºÏ¼Æ}', 'number', 'salaryItem', 4, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240245, '˰��ۿ�ϼ�', 1651749240004, 'salaryItem_afterTaxDeductionsTotal', '{н����Ŀ.˰��ۿ�ϼ�}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749240245, '˰ºó¿Û¿îºÏ¼Æ', 1651749240004, 'salaryItem_afterTaxDeductionsTotal', '{н×ÊÏîÄ¿.˰ºó¿Û¿îºÏ¼Æ}', 'number', 'salaryItem', 5, 1, 0, to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:14:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749398399, '��ҵ������', 1651749398360, 'welfare_9007otherPer', '{�籣����.��ҵ������}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749398399, 'ÆóÒµÄê½ð¸öÈË', 1651749398360, 'welfare_9007otherPer', '{Éç±£¸£Àû.ÆóÒµÄê½ð¸öÈË}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:16:38','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749448843, '��ҵ��������', 1651749448800, 'otherDeduction_businessHealthyInsurance', '{������˰�۳�.��ҵ��������}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749448843, 'ÉÌÒµ½¡¿µ±£ÏÕ', 1651749448800, 'otherDeduction_businessHealthyInsurance', '{ÆäËûÃâ˰¿Û³ý.ÉÌÒµ½¡¿µ±£ÏÕ}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:17:29','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749487225, '˰�����ϱ���', 1651749487187, 'otherDeduction_taxDelayEndowmentInsurance', '{������˰�۳�.˰�����ϱ���}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749487225, '˰ÑÓÑøÀϱ£ÏÕ', 1651749487187, 'otherDeduction_taxDelayEndowmentInsurance', '{ÆäËûÃâ˰¿Û³ý.˰ÑÓÑøÀϱ£ÏÕ}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:18:07','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749540213, '����', 1651749540147, 'otherDeduction_otherDeduction', '{������˰�۳�.����}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749540213, 'ÆäËû', 1651749540147, 'otherDeduction_otherDeduction', '{ÆäËûÃâ˰¿Û³ý.ÆäËû}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:00','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749596472, '׼��۳��ľ�����', 1651749595061, 'otherDeduction_deductionAllowedDonation', '{������˰�۳�.׼��۳��ľ�����}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749596472, '×¼Óè¿Û³ýµÄ¾èÔù¶î', 1651749595061, 'otherDeduction_deductionAllowedDonation', '{ÆäËûÃâ˰¿Û³ý.×¼Óè¿Û³ýµÄ¾èÔù¶î}', 'number', 'otherDeduction', 0, 1, 0, to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:19:55','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749675326, '���£��Σ�׼�ʿ۳��ľ�����', 1651749675268, 'salaryItem_allowedDonation', '{н����Ŀ.���£��Σ�׼�ʿ۳��ľ�����}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749675326, '±¾Ô£¨´Î£©×¼Ôʿ۳ýµÄ¾èÔù¶î', 1651749675268, 'salaryItem_allowedDonation', '{н×ÊÏîÄ¿.±¾Ô£¨´Î£©×¼Ôʿ۳ýµÄ¾èÔù¶î}', 'number', 'salaryItem', 0, 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749675365, '�ۼ�׼��۳��ľ�����', 1651749675268, 'addUpSituation_addUpAllowedDonation', '{�����ۼ����.�ۼ�׼��۳��ľ�����}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749675365, 'ÀÛ¼Æ×¼Óè¿Û³ýµÄ¾èÔù¶î', 1651749675268, 'addUpSituation_addUpAllowedDonation', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼Æ×¼Óè¿Û³ýµÄ¾èÔù¶î}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:21:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749914793, '���ϱ��ո���', 1651749914746, 'welfare_9001socialPer', '{�籣����.���ϱ��ո���}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749914793, 'ÑøÀϱ£ÏÕ¸öÈË', 1651749914746, 'welfare_9001socialPer', '{Éç±£¸£Àû.ÑøÀϱ£ÏÕ¸öÈË}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749958917, 'ҽ�Ʊ��ո���', 1651749958879, 'welfare_9002socialPer', '{�籣����.ҽ�Ʊ��ո���}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651749958917, 'Ò½ÁƱ£ÏÕ¸öÈË', 1651749958879, 'welfare_9002socialPer', '{Éç±£¸£Àû.Ò½ÁƱ£ÏÕ¸öÈË}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:25:59','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651750005320, 'ʧҵ���ո���', 1651750005281, 'welfare_9004socialPer', '{�籣����.ʧҵ���ո���}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651750005320, 'ʧҵ±£ÏÕ¸öÈË', 1651750005281, 'welfare_9004socialPer', '{Éç±£¸£Àû.ʧҵ±£ÏÕ¸öÈË}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:26:45','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651750034727, 'ס�����������', 1651750034689, 'welfare_9006fundPer', '{�籣����.ס�����������}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651750034727, 'ס·¿¹«»ý½ð¸öÈË', 1651750034689, 'welfare_9006fundPer', '{Éç±£¸£Àû.ס·¿¹«»ý½ð¸öÈË}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-05 19:27:15','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801435862, '�籣���˺ϼ�', 1651801433504, 'welfare_socialPerSum', '{�籣����.�籣���˺ϼ�}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801435862, 'Éç±£¸öÈ˺ϼÆ', 1651801433504, 'welfare_socialPerSum', '{Éç±£¸£Àû.Éç±£¸öÈ˺ϼÆ}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801436423, '�ۼ��籣���˺ϼ�', 1651801433504, 'addUpSituation_addUpSocialSecurityTotal', '{�����ۼ����.�ۼ��籣���˺ϼ�}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801436423, 'ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ', 1651801433504, 'addUpSituation_addUpSocialSecurityTotal', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÉç±£¸öÈ˺ϼÆ}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:43:54','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801587331, '��������˺ϼ�', 1651801586972, 'welfare_fundPerSum', '{�籣����.��������˺ϼ�}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801587331, '¹«»ý½ð¸öÈ˺ϼÆ', 1651801586972, 'welfare_fundPerSum', '{Éç±£¸£Àû.¹«»ý½ð¸öÈ˺ϼÆ}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801587794, '�ۼƹ�������˺ϼ�', 1651801586972, 'addUpSituation_addUpAccumulationFundTotal', '{�����ۼ����.�ۼƹ�������˺ϼ�}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801587794, 'Àۼƹ«»ý½ð¸öÈ˺ϼÆ', 1651801586972, 'addUpSituation_addUpAccumulationFundTotal', '{ÍùÆÚÀÛ¼ÆÇé¿ö.Àۼƹ«»ý½ð¸öÈ˺ϼÆ}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:46:27','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801669969, '�����������˺ϼ�', 1651801667770, 'welfare_otherPerSum', '{�籣����.�����������˺ϼ�}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801669969, 'ÆäËû¸£Àû¸öÈ˺ϼÆ', 1651801667770, 'welfare_otherPerSum', '{Éç±£¸£Àû.ÆäËû¸£Àû¸öÈ˺ϼÆ}', 'number', 'welfare', 0, 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) / -INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801670474, '�ۼ���ҵ��ְҵ�������������', 1651801667770, 'addUpSituation_addUpEnterpriseAndOther', '{�����ۼ����.�ۼ���ҵ��ְҵ�������������}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) +INSERT into hrsa_formula_var(id, name, formula_id, field_id, field_name, field_type, source, order_index, creator, delete_type, create_time, update_time) VALUES (1651801670474, 'ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû', 1651801667770, 'addUpSituation_addUpEnterpriseAndOther', '{ÍùÆÚÀÛ¼ÆÇé¿ö.ÀÛ¼ÆÆóÒµ£¨Ö°Òµ£©Äê½ð¼°ÆäËû¸£Àû}', 'number', 'addUpSituation', 1, 1, 0, to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-06 09:47:48','yyyy-MM-dd HH24:mi:ss')) / @@ -2472,41 +2358,41 @@ INSERT into hrsa_salary_sob_default_item(id, income_category, sys_salary_item_id -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614083, 1, '�����Լ���˰', 0, ' ', SYSDATE, SYSDATE, 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614083, 1, 'ÊÕÈëÒÔ¼°Ãâ˰', 0, ' ', SYSDATE, SYSDATE, 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614092, 1, 'ר��۳�', 1, ' ', SYSDATE, SYSDATE, 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614092, 1, 'רÏî¿Û³ý', 1, ' ', SYSDATE, SYSDATE, 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614103, 1, '�ۼ�ר��ӿ۳�', 2, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614103, 1, 'ÀÛ¼Æ×¨Ï¼Ó¿Û³ý', 2, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614110, 1, '�����۳�����Ϣ', 3, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614110, 1, 'ÆäËû¿Û³ýµÈÐÅÏ¢', 3, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614119, 1, '˰�����', 4, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614119, 1, '˰¿î¼ÆËã', 4, ' ', to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:27','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614126, 1, 'Ӧ��ʵ��', 5, ' ', to_date('2022-03-11 14:49:28','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:28','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (703433961629614126, 1, 'Ó¦·¢Êµ·¢', 5, ' ', to_date('2022-03-11 14:49:28','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-11 14:49:28','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368899, 4, '������Ŀ', 0, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368899, 4, 'ËùµÃÏîÄ¿', 0, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368901, 4, '���뼰��˰', 1, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368901, 4, 'ÊÕÈë¼°Ãâ˰', 1, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368904, 4, '�����۳�����Ϣ', 2, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368904, 4, 'ÆäËû¿Û³ýµÈÐÅÏ¢', 2, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368909, 4, '˰�����', 3, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_sob_default_item_group(id, income_category, name, sorted_index, description, create_time, update_time, creator, delete_type, tenant_key) VALUES (704495325212368909, 4, '˰¿î¼ÆËã', 3, ' ', to_date('2022-03-15 17:52:48','yyyy-MM-dd HH24:mi:ss'), to_date('2022-03-15 18:14:53','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9001, '���ϱ���', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9001, 'ÑøÀϱ£ÏÕ', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9002, 'ҽ�Ʊ���', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9002, 'Ò½ÁƱ£ÏÕ', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9003, '���˱���', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9003, '¹¤É˱£ÏÕ', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9004, 'ʧҵ����', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9004, 'ʧҵ±£ÏÕ', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9005, '��������', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9005, 'ÉúÓý±£ÏÕ', 1, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9006, 'ס��������', 2, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9006, 'ס·¿¹«»ý½ð', 2, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9007, '��ҵ���', 3, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9007, 'ÆóÒµÄê½ð', 3, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / -INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9008, '����ס��������', 2, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') +INSERT into hrsa_insurance_category (id, insurance_name, welfare_type, is_use, payment_scope, data_type, create_time, update_time, creator, delete_type, tenant_key) VALUES (9008, '²¹³äס·¿¹«»ý½ð', 2, 1, '1,2', 1, to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), to_date('2022-05-10 16:03:02','yyyy-MM-dd HH24:mi:ss'), 0, 0, 'all_teams') / \ No newline at end of file diff --git a/resource/ecology9/sqlupgrade/Oracle/sql202205200203.sql b/resource/ecology9/sqlupgrade/Oracle/sql202205200203.sql index 6a3f835e6..5480d1cde 100644 --- a/resource/ecology9/sqlupgrade/Oracle/sql202205200203.sql +++ b/resource/ecology9/sqlupgrade/Oracle/sql202205200203.sql @@ -1,5 +1,11 @@ -ALTER TABLE hrsa_add_up_situation ADD ( add_up_illness_medical varchar(255) ,add_up_tax_savings varchar(255) ,add_up_infant_care varchar(255)) +ALTER TABLE hrsa_add_up_situation ADD ( + add_up_illness_medical varchar2(255) NULL , + add_up_tax_savings varchar2(255) NULL , + add_up_infant_care varchar2(255) NULL +) / - -ALTER TABLE hrsa_add_up_deduction ADD (add_up_illness_medical varchar(255) ,add_up_infant_care varchar(255)) +ALTER TABLE hrsa_add_up_deduction add ( + add_up_illness_medical varchar2(255) NULL, + add_up_infant_care varchar2(255) NULL +) / \ No newline at end of file