32 lines
806 B
Transact-SQL
32 lines
806 B
Transact-SQL
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,
|
|
salary_month datetime,
|
|
tax_cycle datetime,
|
|
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 |