weaver-hrm-salary/resource/sqlupgrade/SQLServer/sql202308090303.sql

32 lines
814 B
MySQL
Raw Normal View History

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,
salary_month nvarchar(10),
tax_cycle nvarchar(10),
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