Commit aa2209e4 authored by zhangch's avatar zhangch

优化

parent ce5764b1
...@@ -15,7 +15,6 @@ import java.util.List; ...@@ -15,7 +15,6 @@ import java.util.List;
* *
* @author czz * @author czz
*/ */
@Service
public interface ReTaskService extends IService<ChAprTask> { public interface ReTaskService extends IService<ChAprTask> {
Page<ReTaskDistributionVO> reTaskDistributionList(Page<ReTaskDistributionVO> page, Long organId, Boolean isIncluded, String acptProvincial, String acptCity, String acptCrea, String realName, String certiCode); Page<ReTaskDistributionVO> reTaskDistributionList(Page<ReTaskDistributionVO> page, Long organId, Boolean isIncluded, String acptProvincial, String acptCity, String acptCrea, String realName, String certiCode);
/** /**
......
...@@ -27,7 +27,7 @@ import java.util.List; ...@@ -27,7 +27,7 @@ import java.util.List;
@Service @Service
@Slf4j @Slf4j
@AllArgsConstructor @AllArgsConstructor
public abstract class ReTaskServiceImpl extends ServiceImpl<TaskMapper, ChAprTask> implements ReTaskService { public class ReTaskServiceImpl extends ServiceImpl<TaskMapper, ChAprTask> implements ReTaskService {
private final TaskMapper taskMapper; private final TaskMapper taskMapper;
private final OrganFeignService organFeignService; private final OrganFeignService organFeignService;
private final ChDisableApplyMapper disableApplyMapper; private final ChDisableApplyMapper disableApplyMapper;
...@@ -53,4 +53,10 @@ public abstract class ReTaskServiceImpl extends ServiceImpl<TaskMapper, ChAprTas ...@@ -53,4 +53,10 @@ public abstract class ReTaskServiceImpl extends ServiceImpl<TaskMapper, ChAprTas
chDisableApplyVo = chDisableApplyMapper.getReassmentDetailById(applyId); chDisableApplyVo = chDisableApplyMapper.getReassmentDetailById(applyId);
return chDisableApplyVo; return chDisableApplyVo;
} }
@Override
public List<ChAprTaskVo> geReTaskHisInfoList() {
// 历史评定信息列表
return null;
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment