@@ -24,6 +24,4 @@ public interface CommonService {
Page<CrowdProjectVO> getProjectInfo(Pageable pageable, String keyword, int deletedStatus);
Page<CrowdTaskVO> getTaskinfo(Pageable pageable, String keyword, int deletedStatus);
-
- ApplicationTypeVO getTestTypeByApplicationType(String applicationCode);
}
@@ -80,9 +80,4 @@ public class CommonServiceImpl implements CommonService {
return taskRepo.findAllByPage(pageable,keyword,deletedStatus).map(crowdTestTask -> new CrowdTaskVO(crowdTestTask));
- @Override
- public ApplicationTypeVO getTestTypeByApplicationType(String applicationCode) {
- return null;
- }