Compare commits

...

2 Commits

Author SHA1 Message Date
liang.chao 9d613dcfc6 Merge remote-tracking branch 'origin/dev' into dev 2024-08-16 10:38:41 +08:00
liang.chao 3ae0c08211 重庆新增字段 2024-08-16 10:38:30 +08:00
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- 配件id
alter table repair_apply_record
add part_id int null comment '配件id';
-- 0 未审核 1已审核
alter table repair_apply_record
add status int default 0 null comment '0 未审核 1已审核';
-- 是否结算0 未结算 1已结算
alter table repair_apply_record
add is_slt int default 0 null comment '是否结算0 未结算 1已结算';