记得上下班打卡 | git大法好,push需谨慎

Commit cdee87ec authored by 胡佳晨's avatar 胡佳晨

订单列表 接口修改

parent f6ecd6f8
......@@ -35,8 +35,8 @@ public class GoblinOrderAppController {
@ApiImplicitParam(type = "form", required = false, dataType = "String", name = "pre", value = "活动前缀[ZZ-正在下单|不传为普通订单]", example = "ZZ"),
})
public ResponseDto<List<GoblinAppOrderListVo>> orderList(@RequestParam("page") @Valid int page,
@RequestParam("pre") @Valid String pre) {
return goblinOrderAppService.orderList(page,pre);
@RequestParam(value = "pre", required = false) String pre) {
return goblinOrderAppService.orderList(page, pre);
}
@PostMapping("listByCode")
......
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 to comment