This commit is contained in:
seesaw
2024-09-25 16:02:00 +08:00
parent 6efff70a60
commit c6419745a7
25 changed files with 902 additions and 60 deletions

View File

@ -13,7 +13,7 @@ import java.util.List;
public interface CarteenApi {
/**
* 获得门店信息
* 根据菜品Id获取门店信息
*/
public CarteenRespDto getCarteen(Long id);
/**

View File

@ -190,4 +190,6 @@ public interface ErrorCodeConstants {
ErrorCode DEVICE_MONEY_NOT_EXISTS = new ErrorCode(1_002_038_002, "门店设备流水不存在");
// ========== 门店 设备日流水 1_002_039_002 ==========
ErrorCode MATERIAL_NOT_EXISTS = new ErrorCode(1_002_039_002, "门店材料库存不存在");
ErrorCode FACE_DEVICE_INFO_NOT_EXISTS = new ErrorCode(1_002_040_002, "人脸设备信息关联门店不存在");
}