13 lines
300 B
MySQL
13 lines
300 B
MySQL
|
|
create table hrsa_acct_calc_tax_req
|
||
|
|
(
|
||
|
|
id bigint primary key ,
|
||
|
|
create_time timestamp default now(),
|
||
|
|
update_time timestamp default now(),
|
||
|
|
creator bigint,
|
||
|
|
delete_type int default 0,
|
||
|
|
tenant_key varchar(10),
|
||
|
|
salary_acct_record_id bigint,
|
||
|
|
tax_agent_id bigint,
|
||
|
|
request_id varchar(100)
|
||
|
|
);
|
||
|
|
/
|