|
|
@@ -1,7 +1,6 @@
|
|
|
package com.kxs.product.biz.service.impl;
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
-import cn.hutool.extra.spring.SpringUtil;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
@@ -17,7 +16,6 @@ import com.kxs.product.api.dto.kxsapp.gd.GdDqReportDTO;
|
|
|
import com.kxs.product.api.dto.kxsapp.gd.GdReportDTO;
|
|
|
import com.kxs.product.api.dto.kxsapp.gd.GdReportPutDTO;
|
|
|
import com.kxs.product.api.model.KxsGdReport;
|
|
|
-import com.kxs.product.api.res.gd.GdQueryOrderRes;
|
|
|
import com.kxs.product.api.vo.kxsapp.gd.GdDotNumVO;
|
|
|
import com.kxs.product.api.vo.kxsapp.gd.GdDqDotNumVO;
|
|
|
import com.kxs.product.api.vo.kxsapp.gd.GdReportListVO;
|
|
|
@@ -29,10 +27,8 @@ import com.kxs.product.biz.service.KxsGdService;
|
|
|
import com.kxs.user.api.feign.RemoteKxsUserService;
|
|
|
import com.kxs.user.api.model.KxsUser;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
-import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.util.List;
|
|
|
import java.util.Objects;
|
|
|
import java.util.Optional;
|
|
|
|
|
|
@@ -71,10 +67,10 @@ public class KxsGdReportServiceImpl extends ServiceImpl<KxsGdReportMapper, KxsGd
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public IPage<GdReportListVO> getByPage(Page<GdReportListVO> page, Integer status, String keyword) {
|
|
|
+ public IPage<GdReportListVO> getByPage(Page<GdReportListVO> page, Integer status, Integer putType, String keyword) {
|
|
|
|
|
|
Long userId = SecurityUtils.getUser().getId();
|
|
|
- return baseMapper.getByPage(page, userId, status, keyword);
|
|
|
+ return baseMapper.getByPage(page, userId, status, putType, keyword);
|
|
|
}
|
|
|
|
|
|
@Override
|