18 lines
466 B
MySQL
18 lines
466 B
MySQL
|
|
create table hrsa_tax_declare_status
|
||
|
|
(
|
||
|
|
id bigint primary key ,
|
||
|
|
tax_declare_record_id bigint NULL ,
|
||
|
|
report_type int NULL ,
|
||
|
|
request_id varchar(100) ,
|
||
|
|
tax_declare_type tinyint NULL ,
|
||
|
|
tax_declare_status tinyint NULL ,
|
||
|
|
display_update_icon tinyint NULL ,
|
||
|
|
tax_declare_error_msg varchar(1000) ,
|
||
|
|
person_num int NULL ,
|
||
|
|
tax_pay_amount varchar(255) ,
|
||
|
|
tax_paid_amount varchar(255) ,
|
||
|
|
tax_pure_paid_amount varchar(255) ,
|
||
|
|
declare_request_id varchar(100) ,
|
||
|
|
delete_type int NULL
|
||
|
|
)
|
||
|
|
GO
|