增加二维码扫码测试返回接口

This commit is contained in:
czx 2021-02-05 16:56:02 +08:00
parent 2461cbe914
commit f7b253e5d8

View File

@ -647,4 +647,13 @@ public class ClientController extends BaseController {
return AjaxResult.success("已删除");
}
@PostMapping("qrcode")
public AjaxResult qrcode(@RequestBody JSONObject params) {
Long staffId = params.getLong("staffId");
Long orderId = params.getLong("orderId");
System.out.println("staffId: " + staffId.toString());
System.out.println("orderId: " + orderId.toString());
return AjaxResult.success("二维码扫码成功");
}
}