|
|
|
@ -729,9 +729,7 @@ public class ExpertController extends JeecgController<Expert, IExpertService> { |
|
|
|
|
|
|
|
|
|
@ApiOperation(value="专家CMS详细信息需要的,参数为专家的id", notes="专家CMS详细信息需要的,参数为专家的id") |
|
|
|
|
@GetMapping(value = "CMSexpinfo") |
|
|
|
|
public Result<ExpCmsVo> CMSexpinfo(@RequestParam(name="id",required=true) String id, |
|
|
|
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo, |
|
|
|
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize) { |
|
|
|
|
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(); |
|
|
|
|
ExpCmsVo expCmsVo = new ExpCmsVo(); |
|
|
|
|