|
|
|
@ -83,4 +83,15 @@ public class ModevController extends BasicController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("bindicd")
|
|
|
|
|
@ApiOperation("详情")
|
|
|
|
|
public Response<String> bindicd(@Validated @NotNull(message = "ID不能为空!") @Param("id") Integer id,@Validated @NotNull(message = "icdid不能为空!") @Param("icdid") Integer icdid) {
|
|
|
|
|
try {
|
|
|
|
|
service.bindicd(id,icdid);
|
|
|
|
|
return Response.success("OK");
|
|
|
|
|
} catch (Exception ex) {
|
|
|
|
|
return Response.fail(ex.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|