From 22023006be541c112159d764af72b3ddbb670a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AE=B5=E9=A3=9E=E5=AE=87?= <2684146481@qq.com> Date: Wed, 2 Aug 2023 12:00:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hzims-service/operational/src/main/resources/db/1.0.2.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hzims-service/operational/src/main/resources/db/1.0.2.sql diff --git a/hzims-service/operational/src/main/resources/db/1.0.2.sql b/hzims-service/operational/src/main/resources/db/1.0.2.sql new file mode 100644 index 0000000..86f166e --- /dev/null +++ b/hzims-service/operational/src/main/resources/db/1.0.2.sql @@ -0,0 +1,5 @@ +update hzims_oper_maintenance_task set flow_task_name = '待领用' where STATUS =1; +update hzims_oper_maintenance_task set flow_task_name = '待执行' where STATUS =2; +update hzims_oper_maintenance_task set flow_task_name = '待确认' where STATUS =3; +update hzims_oper_maintenance_task set flow_task_name = '待归档' where STATUS =4; +update hzims_oper_maintenance_task set flow_task_name = '结束' where STATUS =5; \ No newline at end of file