1.排队取号 增加叫号状态接口

This commit is contained in:
2024-09-14 17:01:05 +08:00
parent 21d35b3f22
commit 75a07add94
4 changed files with 32 additions and 1 deletions

View File

@@ -55,4 +55,12 @@ public class TbCallTableController {
return Result.successWithData(tbCallService.cancel(cancelCallQueueDTO));
}
@GetMapping("state")
public Result getState(
@RequestParam String openId,
@RequestParam Integer shopId
) {
return Result.successWithData(tbCallService.getState(openId, shopId));
}
}