15 lines
329 B
MySQL
15 lines
329 B
MySQL
|
|
create table hrsa_tax_declaration_value
|
||
|
|
(
|
||
|
|
id bigint primary key ,
|
||
|
|
create_time timestamp,
|
||
|
|
update_time timestamp,
|
||
|
|
creator bigint,
|
||
|
|
delete_type int default 0,
|
||
|
|
tenant_key varchar(10),
|
||
|
|
tax_declare_record_id bigint,
|
||
|
|
tax_declaration_id bigint,
|
||
|
|
employee_type smallint,
|
||
|
|
employee_id bigint,
|
||
|
|
result_value_json text
|
||
|
|
);
|
||
|
|
/
|