33 lines
758 B
Transact-SQL
33 lines
758 B
Transact-SQL
create table hrsa_tax_declare_api_profile
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
api_profile int
|
|
)
|
|
GO
|
|
|
|
create index id_tenant_key_22b215db on hrsa_tax_declare_api_profile(tenant_key)
|
|
GO
|
|
|
|
create table hrsa_tax_payment_request
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
tax_agent_id bigint not null,
|
|
tax_declare_record_id bigint,
|
|
tax_year_month datetime not null,
|
|
request_id nvarchar(50) not null,
|
|
request_type int not null
|
|
)
|
|
GO
|
|
|
|
create index id_tenant_key_bcb610c7 on hrsa_tax_payment_request(tenant_key)
|
|
GO |