|
|
|
@ -721,14 +721,14 @@ public class ExpertController extends JeecgController<Expert, IExpertService> { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ApiOperation(value="专家列表研究方向CMS列表", notes="专家列表研究方向CMS列表") |
|
|
|
|
@GetMapping(value = "directioncalListCMS") |
|
|
|
|
@GetMapping(value = "/directioncalListCMS") |
|
|
|
|
public Result<List<DisciplineFieid>> directioncalListCMS() { |
|
|
|
|
List<DisciplineFieid> disciplineFieid =disciplineFieidService.list(); |
|
|
|
|
return Result.OK(disciplineFieid); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ApiOperation(value="专家CMS详细信息需要的,参数为专家的id", notes="专家CMS详细信息需要的,参数为专家的id") |
|
|
|
|
@GetMapping(value = "CMSexpinfo") |
|
|
|
|
@GetMapping(value = "/CMSexpinfo") |
|
|
|
|
public Result<ExpCmsVo> CMSexpinfo(@RequestParam(name="id",required=true) String id) { |
|
|
|
|
Expert expert = expertService.getById(id); |
|
|
|
|
SysUser sysUser=sysUserService.query().eq("username",expert.getSeusername()).one(); |
|
|
|
|