|
|
@@ -16,6 +16,7 @@ import lombok.RequiredArgsConstructor; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import javax.validation.Valid; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
|
|
|
|
/** |
|
|
|
* <p> |
|
|
@@ -46,6 +47,13 @@ public class ExpertController { |
|
|
|
return expertManage.getExpertFullInfoDetail(null); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/admin/detail") |
|
|
|
@ApiOperation("专家管理员获取专家详细信息") |
|
|
|
public ExpertFullInfoVO getExpertFullInfoDetail(@RequestParam(value = "expertUserId") @NotNull Long expertUserId) { |
|
|
|
return expertManage.getExpertFullInfoDetail(expertUserId); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping("/expert-library/list") |
|
|
|
@ApiOperation("专家库列表查询接口") |
|
|
|
public PageVo<ExpertAdminExpertManageListVO> getExpertLibraryList( |
|
|
|