From 46f29e79b43be98199d0727a71d85dddaa6e1fd4 Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期五, 15 十二月 2023 10:00:23 +0800 Subject: [PATCH] 增加A01 A02行走伺服回零 输入密码才能点击 --- springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java | 25 ++++++++++++++----------- 1 files changed, 14 insertions(+), 11 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java b/springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java index b41062a..512c562 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java +++ b/springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java @@ -55,8 +55,8 @@ short SelectInTask(); // 鎵嬪姩瀹屾垚浠诲姟 - @Update("update storage_task set task_state=1 where task_type=#{task_type} and task_state=0") - void UpdateTask(@Param("task_type") Integer task_type); + @Update("update storage_task set task_state=1 where task_type=#{task_type} and task_state=0 and glass_id=#{glassid}") + void UpdateTask(@Param("task_type") Integer task_type,String glassid); // 鎵嬪姩瀹屾垚杩涚墖浠诲姟淇敼绗煎瓙鏁版嵁 @Update("update storage_cage set state=1 where glass_id=#{glassid} and state=2") @@ -135,7 +135,7 @@ north_glass_buffer1 SelectBoxNo(String glassid); //鏌ヨ鍑虹墖闃熷垪淇℃伅 - @Select("select * from out_slice where state=0 or state=1 or state=2 order by sequence") + @Select("select * from out_slice order by sequence") List<Out_slice> SelectProductionqueue(); //鏍规嵁鐜荤拑id鏌ヨ绗煎唴鐜荤拑淇℃伅 @@ -143,9 +143,9 @@ StorageCage SelectStorageGlassById(String glassid); - //鏍规嵁鐜荤拑id鍒犻櫎鍑虹墖闃熷垪鐜荤拑 - @Update("update out_slice set state=4 where barcode=#{FrameNo} and (state=0 or state=1 or state=2)") - void DeleteProductionQueueGlass(String id); + // //鏍规嵁鐜荤拑id鍒犻櫎鍑虹墖闃熷垪鐜荤拑 + // @Update("update out_slice set state=4 where barcode=#{FrameNo} and (state=0 or state=1 or state=2)") + // void DeleteProductionQueueGlass(String id); //鏍规嵁閾濇id鏌ヨ瀵瑰簲鐜荤拑淇℃伅 @Select("select * from north_glass_buffer1 where FrameBarcode=#{FrameBarcode}") @@ -153,12 +153,12 @@ //鏌ヨ鐜荤拑鏄惁宸插瓨鍦ㄤ簬鍑虹墖闃熷垪 - @Select("select * from out_slice where glassid=#{getbarcode} and (state=0 or state=1 or state=2)") + @Select("select * from out_slice where glassid=#{getbarcode} and (state=0 or state=1 or state=2 or state=3)") Out_slice SelectQueueByglassid(String getbarcode); //娣诲姞鍑虹墖闃熷垪 - @Insert("INSERT INTO out_slice( `glassId`, `barcode`, `glasswidth`, `glassheight`, `state`, `flip`, `sequence`, `time` ,`position`) VALUES ( #{glassid}, #{FrameNo}, #{glasslengthMm}, #{glassheightMm}, 0, #{flip}, #{sequence}, now(), #{position});") - void AddOutSliceS(String glassid, String flip, String FrameNo, String glasslengthMm, String glassheightMm, int sequence, String position); + @Insert("INSERT INTO out_slice( `glassId`, `barcode`, `glasswidth`, `glassheight`, `state`, `flip`, `sequence`, `time` ,`position`) VALUES ( #{glassid}, #{FrameNo}, #{glasslengthMm}, #{glassheightMm}, #{state}, #{flip}, #{sequence}, now(), #{position});") + void AddOutSliceS(String glassid, String flip, String FrameNo, String glasslengthMm, String glassheightMm, int sequence, String position, Short state); //鍑虹墖闃熷垪璋冨簭 @Update("update out_slice set sequence=#{sequence} where glassid=#{glassId}") @@ -178,8 +178,11 @@ @Select("select count(*) from out_slice where barcode=#{frameid} and state<2") Short SelectCountByFrameNo(String frameid); - //閾濇id瀵瑰簲鐜荤拑鏀瑰畬鍏ㄩ儴瀹屾垚鐘舵�� - @Update("update out_slice set state=3 where barcode=#{frameid} and state=2") + //鍒犻櫎宸插畬鎴愮殑浠诲姟 + @Update("delete from out_slice where Barcode=#{frameid}") void CompleteQueueByFrameNo(String frameid); + @Select("Select width from storage_cage where cage=#{cage} and cell=#{cell} limit 1") + Double SelectCageWidth(short cage, short cell); + } -- Gitblit v1.8.0