32 lines
1.1 KiB
MySQL
32 lines
1.1 KiB
MySQL
|
|
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' ,
|
|||
|
|
salary_month varchar(10) comment 'н<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|||
|
|
tax_cycle varchar(10) comment '˰<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>' ,
|
|||
|
|
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)
|
|||
|
|
;
|