|
|
@ -77,6 +77,13 @@ public class IcdConfigController extends BasicController {
|
|
|
|
return Response.success("OK");
|
|
|
|
return Response.success("OK");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("deleteAtt")
|
|
|
|
|
|
|
|
@ApiOperation("删除ICD类型属性配置")
|
|
|
|
|
|
|
|
public Response<String> deleteAtt(@Validated @NotNull(message = "attid不能为空!") Integer attid) {
|
|
|
|
|
|
|
|
configService.deleteAtt(attid);
|
|
|
|
|
|
|
|
return Response.success("OK");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("tableList")
|
|
|
|
@GetMapping("tableList")
|
|
|
|
@ApiOperation("查询data表名")
|
|
|
|
@ApiOperation("查询data表名")
|
|
|
|
public Response<List<String>> tableList() throws Exception {
|
|
|
|
public Response<List<String>> tableList() throws Exception {
|
|
|
|