dbpatch/202408/南网仓储/repair_apply_record_2024081...

13 lines
381 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 配件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已结算';