15 lines
328 B
Transact-SQL
15 lines
328 B
Transact-SQL
create table hrsa_tax_declaration_value
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
tax_declare_record_id bigint,
|
|
tax_declaration_id bigint,
|
|
employee_type tinyint,
|
|
employee_id bigint,
|
|
result_value_json ntext
|
|
)
|
|
GO |