|
@@ -23,11 +23,12 @@ public interface ViewMediator {
|
|
List<UserVO> renderMoreUser(Pageable pageable);
|
|
List<UserVO> renderMoreUser(Pageable pageable);
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
List<CrowdTaskVO> findMoreHotTasks();
|
|
List<CrowdTaskVO> findMoreHotTasks();
|
|
|
|
+
|
|
List<CrowdTestProjectVO> findMoreHotProjects();
|
|
List<CrowdTestProjectVO> findMoreHotProjects();
|
|
|
|
|
|
EnterpriseAuthVO getEnterpriseAuthByUserId(Long userId);
|
|
EnterpriseAuthVO getEnterpriseAuthByUserId(Long userId);
|
|
|
|
+
|
|
PersonalAuthVO getByUserId(Long userId);
|
|
PersonalAuthVO getByUserId(Long userId);
|
|
|
|
|
|
UserDTO loginByMobileAndPwd(LoginCommand cmd) throws PasswordErrorException, AccountNotExistException, BadRequestException;
|
|
UserDTO loginByMobileAndPwd(LoginCommand cmd) throws PasswordErrorException, AccountNotExistException, BadRequestException;
|
|
@@ -63,14 +64,14 @@ public interface ViewMediator {
|
|
List<BaseAuthVO> renderAuthedList();
|
|
List<BaseAuthVO> renderAuthedList();
|
|
|
|
|
|
// 项目模糊查询
|
|
// 项目模糊查询
|
|
- List<CrowdTestProjectVO> findByNameLike(String name);
|
|
|
|
|
|
+ List<CrowdTestProjectVO> findByNameLike(String name);
|
|
|
|
|
|
//任务模糊查询
|
|
//任务模糊查询
|
|
- List<CrowdTaskVO> findTaskByNameLike(String name);
|
|
|
|
|
|
+ List<CrowdTaskVO> findTaskByNameLike(String name);
|
|
|
|
|
|
- List<CrowdTestProjectVO> crowdTestProjects();
|
|
|
|
|
|
+ List<CrowdTestProjectVO> crowdTestProjects();
|
|
|
|
|
|
- List<CrowdTaskVO> crowdTaskVos();
|
|
|
|
|
|
+ List<CrowdTaskVO> crowdTaskVos();
|
|
|
|
|
|
UserDTO getInformation(long userId);
|
|
UserDTO getInformation(long userId);
|
|
|
|
|
|
@@ -78,25 +79,25 @@ public interface ViewMediator {
|
|
|
|
|
|
QualificationDTO getQualification(long userId);
|
|
QualificationDTO getQualification(long userId);
|
|
|
|
|
|
- QualificationDTO addQualification(long userId,QualificationVO qualificationVO);
|
|
|
|
|
|
+ QualificationDTO addQualification(long userId, QualificationVO qualificationVO);
|
|
|
|
|
|
- QualificationDTO updateQualification(long id,long userId,QualificationVO qualificationVO);
|
|
|
|
|
|
+ QualificationDTO updateQualification(long id, long userId, QualificationVO qualificationVO);
|
|
|
|
|
|
- QualificationDTO deleteQualification(long id,long userId);
|
|
|
|
|
|
+ QualificationDTO deleteQualification(long id, long userId);
|
|
|
|
|
|
BankCardDTO getBankCard(long userId);
|
|
BankCardDTO getBankCard(long userId);
|
|
|
|
|
|
- BankCardDTO addBankCard(long userId,BankCardVO bankCardVO) throws JSONException;
|
|
|
|
|
|
+ BankCardDTO addBankCard(long userId, BankCardVO bankCardVO) throws JSONException;
|
|
|
|
|
|
- BankCardDTO deleteBankCard(long id,long userId);
|
|
|
|
|
|
+ BankCardDTO deleteBankCard(long id, long userId);
|
|
|
|
|
|
- TechnicalArticlesDTO updateRanking(long id);
|
|
|
|
|
|
+ TechnicalArticlesDTO updateRanking(long id);
|
|
|
|
|
|
- List<ResourceVO> getResource();
|
|
|
|
|
|
+ List<ResourceVO> getResource();
|
|
|
|
|
|
ResourceVO getResourceDetailed(String code);
|
|
ResourceVO getResourceDetailed(String code);
|
|
|
|
|
|
- List<ResourceVO> getSearchResource(String name);
|
|
|
|
|
|
+ List<ResourceVO> getSearchResource(String name);
|
|
|
|
|
|
QualificationDTO getOne(long id);
|
|
QualificationDTO getOne(long id);
|
|
|
|
|