重庆结算新增额外费用表

This commit is contained in:
liang.chao 2024-09-27 15:14:31 +08:00
parent 2a64f41a9f
commit ea7559346b
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- 结算额外增加费用表
create table slt_agreement_add_cost
(
id int auto_increment comment '主键id' primary key,
cost_remark varchar(255) null comment '费用描述',
add_cost decimal(10, 2) null comment '费用价格',
agreement_id int null comment '协议id'
) comment '结算额外增加费用表';

View File

@ -0,0 +1,8 @@
-- 结算额外增加费用表
create table slt_agreement_add_cost
(
id int auto_increment comment '主键id' primary key,
cost_remark varchar(255) null comment '费用描述',
add_cost decimal(10, 2) null comment '费用价格',
agreement_id int null comment '协议id'
) comment '结算额外增加费用表';