1.排队取号 取消接口修改

This commit is contained in:
2024-09-14 17:26:21 +08:00
parent 0251def0b0
commit afe65d4a2f
5 changed files with 10 additions and 6 deletions

View File

@@ -3,7 +3,6 @@ package com.chaozhanggui.system.cashierservice.mapper;
import com.chaozhanggui.system.cashierservice.entity.TbCallQueue;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chaozhanggui.system.cashierservice.entity.vo.CallQueueInfoVO;
import org.apache.ibatis.annotations.Select;
import java.util.List;
@@ -15,7 +14,7 @@ import java.util.List;
*/
public interface TbCallQueueMapper extends BaseMapper<TbCallQueue> {
List<CallQueueInfoVO> selectInfoByOpenId(Integer shopId, String openId);
List<CallQueueInfoVO> selectInfoByOpenId(Integer shopId, String openId, String today);
}