2023-08-10 09:33:04 +08:00
|
|
|
|
create table hrsa_tax_declare_record
|
|
|
|
|
|
(
|
|
|
|
|
|
id bigint primary key comment 'ID' ,
|
|
|
|
|
|
create_time datetime comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|
|
|
|
|
update_time datetime comment '<EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>' ,
|
|
|
|
|
|
creator bigint comment '<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>id' ,
|
|
|
|
|
|
delete_type int default 0 comment '<EFBFBD>Ƿ<EFBFBD>ɾ<EFBFBD><EFBFBD>' ,
|
|
|
|
|
|
tenant_key varchar(10) comment '<EFBFBD>⻧KEY' ,
|
|
|
|
|
|
tax_agent_id bigint comment '<EFBFBD><EFBFBD>˰<EFBFBD>۽<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>id' ,
|
2023-08-11 14:20:14 +08:00
|
|
|
|
salary_month datetime comment 'н<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|
|
|
|
|
tax_cycle datetime comment '˰<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
2023-08-10 09:33:04 +08:00
|
|
|
|
remark varchar(1000) comment '<EFBFBD><EFBFBD>ע' ,
|
|
|
|
|
|
request_id varchar(100) comment '<EFBFBD><EFBFBD>Ӧ<EFBFBD>̵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ<EFBFBD><EFBFBD><EFBFBD>ص<EFBFBD>requestid' ,
|
|
|
|
|
|
tax_declare_type tinyint comment '<EFBFBD>걨<EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|
|
|
|
|
tax_declare_status tinyint comment '<EFBFBD>걨״̬'
|
|
|
|
|
|
)
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
alter table hrsa_tax_declare_record add display_update_icon tinyint
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_pay_amount varchar(255)
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
alter table hrsa_tax_declare_record add person_num int
|
|
|
|
|
|
;
|
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_declare_error_msg varchar(1000)
|
|
|
|
|
|
;
|
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_paid_amount varchar(255)
|
|
|
|
|
|
;
|
|
|
|
|
|
alter table hrsa_tax_declare_record add tax_pure_paid_amount varchar(255)
|
|
|
|
|
|
;
|