15 lines
553 B
SQL
15 lines
553 B
SQL
create table hrsa_tax_declaration_value
|
|
(
|
|
id bigint primary key comment 'ID' ,
|
|
create_time datetime comment '创建时间' ,
|
|
update_time datetime comment '修改时间' ,
|
|
creator bigint comment '创建人id' ,
|
|
delete_type int default 0 comment '是否删除' ,
|
|
tenant_key varchar(10) comment '租户KEY' ,
|
|
tax_declare_record_id bigint comment '个税申报记录id' ,
|
|
tax_declaration_id bigint comment '个税申报表id' ,
|
|
employee_type tinyint comment '人员类型' ,
|
|
employee_id bigint comment '人员id' ,
|
|
result_value_json text comment '个税申报表明细值'
|
|
)
|
|
; |