| | |
| | | @Select("select count(*) from storage_cage where glass_id=#{glassId}") |
| | | short SelectStorageByGlassId(String glassId); |
| | | |
| | | @Select("select * from glass where orderid=#{orderid}") |
| | | @Select("select * from glass where position(#{orderid} in orderid)") |
| | | List<Glass> SelectGlass(String orderid); |
| | | |
| | | @Select("select * from queue qe inner join glass gl on qe.glassid=gl.glassid where id=#{id}") |
| | | List<Glass> GetQueueInfo(int id); |
| | | |
| | | @Select("update queue set glassid=#{glassid},state=0,time=now() where id=1") |
| | | void InsertQueueGlassId(String glassid); |
| | | |
| | | |
| | | } |