From 3ae0c082116b99e373e00ffa054873050a75dd80 Mon Sep 17 00:00:00 2001 From: "liang.chao" <1360241448@qq.com> Date: Fri, 16 Aug 2024 10:38:30 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E5=BA=86=E6=96=B0=E5=A2=9E=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 202408/重庆机具/repair_apply_record_20240816.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 202408/重庆机具/repair_apply_record_20240816.sql diff --git a/202408/重庆机具/repair_apply_record_20240816.sql b/202408/重庆机具/repair_apply_record_20240816.sql new file mode 100644 index 0000000..69c5960 --- /dev/null +++ b/202408/重庆机具/repair_apply_record_20240816.sql @@ -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已结算)'; \ No newline at end of file