| | |
| | | @ApiModelProperty(value = "订单促销类型") |
| | | private String orderPromotionType; |
| | | |
| | | private String couponFlag; |
| | | |
| | | |
| | | public <T> QueryWrapper<T> queryWrapper() { |
| | | AuthUser currentUser = UserContext.getCurrentUser(); |
| | | QueryWrapper<T> wrapper = new QueryWrapper<>(); |
| | |
| | | //按评价状态 |
| | | wrapper.eq(CharSequenceUtil.isNotEmpty(commentStatus), "oi.comment_status", commentStatus); |
| | | |
| | | wrapper.eq(CharSequenceUtil.isNotEmpty(couponFlag),"o.coupon_flag", couponFlag); |
| | | |
| | | //按标签查询 |
| | | if (CharSequenceUtil.isNotEmpty(tag)) { |
| | | String orderStatusColumn = "o.order_status"; |