|
@@ -163,11 +163,13 @@ public class ChannelCouponVerifyController extends BaseApiController {
|
|
|
*/
|
|
|
@PostMapping("coupon/verify/log/list")
|
|
|
public TableDataInfo list(@RequestBody JSONObject jsonObject) {
|
|
|
+ int discountType = jsonObject.getIntValue("discountType");
|
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
|
startPage();
|
|
|
List<ChannelCouponVerifyLog> verifyLogList = channelCouponVerifyLogService.list(
|
|
|
new LambdaQueryWrapper<ChannelCouponVerifyLog>()
|
|
|
.eq(ChannelCouponVerifyLog::getChannelId, channelId)
|
|
|
+ .eq(ChannelCouponVerifyLog::getDiscountType,discountType)
|
|
|
.orderByDesc(ChannelCouponVerifyLog::getVerifyTime));
|
|
|
return getDataTable(verifyLogList);
|
|
|
}
|