From 06dce8797cca4884b82ce4e20cd274e151df5e31 Mon Sep 17 00:00:00 2001 From: ZengTao <2773468879@qq.com> Date: 星期二, 12 十二月 2023 09:13:28 +0800 Subject: [PATCH] 调整语言 --- springboot-vue3/src/main/java/com/example/springboot/mapper/HomeMapper.java | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 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 e494aba..7927307 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 @@ -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}") @@ -157,8 +157,8 @@ 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