Commit bf9b11c7 by chongli

修复小程序获取分享记录的异常

parent 53b29bba
...@@ -183,9 +183,10 @@ public class VoucherMController { ...@@ -183,9 +183,10 @@ public class VoucherMController {
//生成一次分享 //生成一次分享
@ResponseBody @ResponseBody
@Security @Security
@RequestMapping(value = "/voucher/queryVoucherShareLogListForMiniApps/{token}", method = RequestMethod.POST) @RequestMapping(value = "/voucher/queryVoucherShareLogListForMiniApps/{token}", method = RequestMethod.GET,params = {"pagerOffset","pagerPerPage"})
public Object queryVoucherShareLogListForMiniApps(@PathVariable String token,@RequestBody VoucherShareLogQuery query) { public Object queryVoucherShareLogListForMiniApps(@PathVariable String token,VoucherShareLogQuery query) {
query.setToken(token); query.setToken(token);
query.setSortField("createTime");
return voucherService.queryVoucherShareLogListForMiniApps(query); return voucherService.queryVoucherShareLogListForMiniApps(query);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment