Commit f4b86f4e by wangli

请求参数变更

1 parent 70692180
......@@ -81,7 +81,7 @@ public class EngineerController {
public Result<?> engineerSkillUpdate(@RequestBody EngineerSkillUpdateReqDTO req) {
// 获取工程师技能信息修改
try {
engineerService.engineerSkillUpdate(req.getEngineerCode(), req.getCategoryIds());
engineerService.engineerSkillUpdate(req.getEngineerCode(), req.getSkillGroupIds());
} catch (BusinessException e) {
return Result.failed(e.getMessage());
}
......
......@@ -7,5 +7,5 @@ import java.util.List;
@Data
public class EngineerSkillUpdateReqDTO {
private String engineerCode;
private List<String> categoryIds;
private List<String> skillGroupIds;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!