增加二维码扫码测试返回接口
This commit is contained in:
parent
2461cbe914
commit
f7b253e5d8
@ -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("二维码扫码成功");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user