2023-08-10 09:33:04 +08:00
|
|
|
create table hrsa_tax_declare_record
|
|
|
|
|
(
|
|
|
|
|
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,
|
2023-08-11 14:20:14 +08:00
|
|
|
salary_month datetime,
|
|
|
|
|
tax_cycle datetime,
|
2023-08-10 09:33:04 +08:00
|
|
|
remark nvarchar(1000),
|
|
|
|
|
request_id nvarchar(100),
|
|
|
|
|
tax_declare_type tinyint,
|
|
|
|
|
tax_declare_status tinyint
|
|
|
|
|
)
|
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alter table hrsa_tax_declare_record add display_update_icon tinyint
|
|
|
|
|
GO
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_pay_amount nvarchar(255)
|
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
alter table hrsa_tax_declare_record add person_num int
|
|
|
|
|
GO
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_declare_error_msg nvarchar(1000)
|
|
|
|
|
GO
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_paid_amount nvarchar(255)
|
|
|
|
|
GO
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_pure_paid_amount nvarchar(255)
|
|
|
|
|
GO
|