|
@@ -10,6 +10,7 @@ import com.mokamrp.privates.mapper.pangu.pojo.FosterwxCashScheduleTaskList;
|
|
|
import com.mokamrp.privates.service.pangu.FosterwxCashScheduleTaskListService;
|
|
import com.mokamrp.privates.service.pangu.FosterwxCashScheduleTaskListService;
|
|
|
import com.mokamrp.privates.service.pangu.FosterwxCashTaskListService;
|
|
import com.mokamrp.privates.service.pangu.FosterwxCashTaskListService;
|
|
|
import com.mokamrp.privates.utils.pangu.redis.task.TaskRedis;
|
|
import com.mokamrp.privates.utils.pangu.redis.task.TaskRedis;
|
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
@@ -60,6 +61,9 @@ public class FosterwxCashScheduleTaskListServiceImpl extends ServiceImpl<Fosterw
|
|
|
// 账号分组
|
|
// 账号分组
|
|
|
if (null != handle.getGroupId())
|
|
if (null != handle.getGroupId())
|
|
|
fosterwxCashScheduleTaskListLambdaQueryWrapper.eq(FosterwxCashScheduleTaskList::getGroupId, handle.getGroupId());
|
|
fosterwxCashScheduleTaskListLambdaQueryWrapper.eq(FosterwxCashScheduleTaskList::getGroupId, handle.getGroupId());
|
|
|
|
|
+ // 排期id
|
|
|
|
|
+ if (null != handle.getScheduleId())
|
|
|
|
|
+ fosterwxCashScheduleTaskListLambdaQueryWrapper.eq(FosterwxCashScheduleTaskList::getScheduleId, handle.getScheduleId());
|
|
|
|
|
|
|
|
List<FosterwxCashScheduleTaskList> list = fosterwxCashScheduleTaskListMapper.getList(fosterwxCashScheduleTaskListLambdaQueryWrapper, pagesize, (page - 1) * pagesize);
|
|
List<FosterwxCashScheduleTaskList> list = fosterwxCashScheduleTaskListMapper.getList(fosterwxCashScheduleTaskListLambdaQueryWrapper, pagesize, (page - 1) * pagesize);
|
|
|
ResHandle<List<FosterwxCashScheduleTaskList>> res = new ResHandle<>();
|
|
ResHandle<List<FosterwxCashScheduleTaskList>> res = new ResHandle<>();
|