39 lines
1.2 KiB
MySQL
39 lines
1.2 KiB
MySQL
|
|
create table hrsa_tax_report_column
|
|||
|
|
(
|
|||
|
|
id bigint primary key comment 'ID' ,
|
|||
|
|
create_time datetime comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|||
|
|
update_time datetime comment '<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|||
|
|
creator bigint comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>id' ,
|
|||
|
|
delete_type int default 0 comment '<EFBFBD>Ƿ<EFBFBD>ɾ<EFBFBD><EFBFBD>' ,
|
|||
|
|
tenant_key varchar(10) comment '<EFBFBD>⻧KEY' ,
|
|||
|
|
tax_report_type varchar(100) comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|||
|
|
income_category varchar(100) comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ' ,
|
|||
|
|
report_column_name varchar(100) comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|||
|
|
report_column_data_index varchar(100) comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
|||
|
|
)
|
|||
|
|
;
|
|||
|
|
|
|||
|
|
create table hrsa_sob_tax_report_rule
|
|||
|
|
(
|
|||
|
|
id bigint primary key comment 'ID' ,
|
|||
|
|
create_time datetime comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|||
|
|
update_time datetime comment '<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|||
|
|
creator bigint comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>id' ,
|
|||
|
|
delete_type int default 0 comment '<EFBFBD>Ƿ<EFBFBD>ɾ<EFBFBD><EFBFBD>' ,
|
|||
|
|
tenant_key varchar(10) comment '<EFBFBD>⻧KEY' ,
|
|||
|
|
salary_sob_id bigint comment 'н<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>id' ,
|
|||
|
|
income_category varchar(100) comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ' ,
|
|||
|
|
report_column_data_index varchar(100) comment '<EFBFBD><EFBFBD>˰<EFBFBD>걨<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|||
|
|
salary_item_id bigint comment 'н<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀid'
|
|||
|
|
)
|
|||
|
|
;
|
|||
|
|
|
|||
|
|
alter table hrsa_tax_report_column add data_type varchar(100)
|
|||
|
|
;
|
|||
|
|
|
|||
|
|
alter table hrsa_tax_report_column add request_param_key varchar(100)
|
|||
|
|
;
|
|||
|
|
|
|||
|
|
alter table hrsa_tax_report_column add report_column_label varchar(100)
|
|||
|
|
;
|