24 lines
931 B
SQL
24 lines
931 B
SQL
create table hrsa_personal_pension
|
|
(
|
|
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' ,
|
|
main_id bigint comment '主表数据id' ,
|
|
tax_year_month date comment '税款所属期' ,
|
|
employee_id bigint comment '人员id' ,
|
|
tax_agent_id bigint comment '个税扣缴义务人id' ,
|
|
file_status int comment '归档状态 0未归档 1已归档' ,
|
|
voucher_type varchar(255) comment '凭证类型' ,
|
|
voucher_no varchar(255) comment '凭证编码' ,
|
|
pay_amount varchar(255) comment '金额' ,
|
|
data_source int comment '数据来源' ,
|
|
collect_source varchar(50) comment '采集来源' ,
|
|
pay_month date comment '缴费月度' ,
|
|
eb_data_id bigint comment 'eb数据id' ,
|
|
voucher_type_name varchar(50) comment '凭证类型' ,
|
|
employee_type int comment '人员类型'
|
|
)
|
|
; |