13 lines
489 B
SQL
13 lines
489 B
SQL
create table hrsa_acct_calc_tax_req
|
|
(
|
|
id bigint primary key comment 'ID' ,
|
|
create_time datetime default now() comment '创建时间' ,
|
|
update_time datetime default now() comment '修改时间' ,
|
|
creator bigint comment '创建人id' ,
|
|
delete_type int default 0 comment '是否删除' ,
|
|
tenant_key varchar(10) comment '租户KEY' ,
|
|
salary_acct_record_id bigint comment '薪资核算记录id' ,
|
|
tax_agent_id bigint comment '个税扣缴义务人id' ,
|
|
request_id varchar(100) comment '请求requestId'
|
|
)
|
|
; |