slt task id

This commit is contained in:
sxu 2024-08-16 11:16:49 +08:00
parent 9d613dcfc6
commit 20f3341576
1 changed files with 16 additions and 0 deletions

View File

@ -2,12 +2,28 @@
alter table bm_agreement_info alter table bm_agreement_info
add is_slt int default 0 null comment '是否结算0 未结算 1已结算'; add is_slt int default 0 null comment '是否结算0 未结算 1已结算';
-- 调整天数
alter table slt_agreement_info
add trim_day int null comment '调整天数';
-- 费用承担方 -- 费用承担方
alter table lease_apply_info alter table lease_apply_info
add cost_bearing_party varchar(255) null comment '费用承担方'; add cost_bearing_party varchar(255) null comment '费用承担方';
-- 领用类型0工程1长期
alter table slt_agreement_info
add lease_type varchar(10) null comment '领用类型0工程1长期';
-- 委外维修费用
alter table repair_cost
add out_source_costs decimal(10, 2) null comment '委外维修费用';
-- 维修方式1内部2返厂3报废
alter table repair_cost
add repair_type varchar(10) null comment '维修方式1内部2返厂3报废';
/* /*