|
@@ -4,15 +4,11 @@ import com.mooctest.crowd.site.data.dto.IndexDTO;
|
|
|
import com.mooctest.crowd.site.data.dto.IndexInfoDTO;
|
|
|
import com.mooctest.crowd.site.data.dto.IndexPageDTO;
|
|
|
import com.mooctest.crowd.site.data.dto.MyCrowdDTO;
|
|
|
-import com.mooctest.crowd.site.data.vo.CrowdProjectVO;
|
|
|
-
|
|
|
-import com.mooctest.crowd.site.data.vo.CrowdTaskVO;
|
|
|
-import com.mooctest.crowd.site.data.vo.UserVO;
|
|
|
+import com.mooctest.crowd.site.data.vo.*;
|
|
|
import org.springframework.data.domain.Page;
|
|
|
import org.springframework.data.domain.Pageable;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.awt.*;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@Service
|
|
@@ -21,7 +17,6 @@ public interface CommonService {
|
|
|
|
|
|
Page<UserVO> getMoreUser(Pageable pageable);
|
|
|
|
|
|
-
|
|
|
IndexDTO getIndexInfo();
|
|
|
|
|
|
MyCrowdDTO getPersonCrowd(Long userId);
|
|
@@ -34,7 +29,7 @@ public interface CommonService {
|
|
|
|
|
|
Page<CrowdTaskVO> getTaskinfo(Pageable pageable, String keyword, int deletedStatus);
|
|
|
|
|
|
- IndexPageDTO getHotTesting(Pageable pageable);
|
|
|
+ Page<ApplicationTypeVO> getHotTesting(Pageable pageable);
|
|
|
|
|
|
- IndexPageDTO getCompetition(Pageable pageable);
|
|
|
+ Page<CompetitionVO> getCompetition(Pageable pageable);
|
|
|
}
|