This commit is contained in:
2024-06-11 14:52:24 +08:00
parent f348972126
commit 7367e11c92
28 changed files with 2994 additions and 1558 deletions

View File

@@ -20,6 +20,7 @@ public interface TbCashierCartMapper {
int updateByPrimaryKeySelective(TbCashierCart record);
List<TbCashierCart> selectByShopIdAndTableId(@Param("shopId") String shopId,@Param("tableId") String tableId);
List<TbCashierCart> selectALlByMasterId(@Param("masterId") String masterId, @Param("status") String status);
@@ -55,4 +56,5 @@ public interface TbCashierCartMapper {
List<TbCashierCart> selectByOrderId(@Param("orderId") String orderId,@Param("status") String status);
void updateStatusByTableId(@Param("tableId")String tableId,@Param("status") String status);
void updateStatusById(@Param("id")Integer id,@Param("status") String status);
}