取消一个无实际作用的限流注解
订单买家端可以查询到别人的订单问题处理
This commit is contained in:
parent
ee1723a76b
commit
9ee76b5328
@ -33,7 +33,6 @@ public class MemberSignBuyerController {
|
|||||||
@PreventDuplicateSubmissions
|
@PreventDuplicateSubmissions
|
||||||
@PostMapping
|
@PostMapping
|
||||||
@ApiOperation(value = "会员签到")
|
@ApiOperation(value = "会员签到")
|
||||||
@LimitPoint(limit = 2)
|
|
||||||
public ResultMessage<Boolean> memberSign() {
|
public ResultMessage<Boolean> memberSign() {
|
||||||
return ResultUtil.data(memberSignService.memberSign());
|
return ResultUtil.data(memberSignService.memberSign());
|
||||||
}
|
}
|
||||||
|
@ -121,7 +121,7 @@ public class OrderSearchParams extends PageVO {
|
|||||||
|
|
||||||
//关键字查询
|
//关键字查询
|
||||||
if (CharSequenceUtil.isNotEmpty(keywords)) {
|
if (CharSequenceUtil.isNotEmpty(keywords)) {
|
||||||
wrapper.like("o.sn", keywords).or().like("oi.goods_name", keywords);
|
wrapper.and(keyWrapper -> keyWrapper.like("o.sn", keywords).or().like("oi.goods_name", keywords));
|
||||||
}
|
}
|
||||||
if (currentUser != null) {
|
if (currentUser != null) {
|
||||||
//按卖家查询
|
//按卖家查询
|
||||||
|
Loading…
x
Reference in New Issue
Block a user