|
@ -6,11 +6,13 @@ import com.yihu.hos.standard.model.adapter.*;
|
|
|
import com.yihu.hos.standard.service.adapter.*;
|
|
|
import com.yihu.hos.web.framework.model.standard.AdapterVersion;
|
|
|
import com.yihu.hos.web.framework.util.controller.BaseController;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
import net.sf.json.JSONArray;
|
|
|
import net.sf.json.JsonConfig;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
@ -27,6 +29,7 @@ import java.util.List;
|
|
|
|
|
|
@RestController("AdapterCenterEndPoint")
|
|
|
@RequestMapping(value = MicroServices.ApiVersion.Version1_0+"/adapterCenter")
|
|
|
@Api(protocols = "https", description = "适配数据管理", tags = {"适配数据管理"})
|
|
|
public class AdapterCenterEndPoint extends BaseController {
|
|
|
@Autowired
|
|
|
private AdapterSchemeService adapterSchemeService;
|
|
@ -41,7 +44,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
@Autowired
|
|
|
private AdapterDictEntryService adapterDictEntryService;
|
|
|
|
|
|
@RequestMapping("/schema/list")
|
|
|
@RequestMapping(value="/schema/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
|
|
|
public String getSchema(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters) throws ParseException {
|
|
@ -51,7 +54,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequestMapping("/version/list")
|
|
|
@RequestMapping(value="/version/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
|
|
|
public String getVersions(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters) throws ParseException {
|
|
@ -62,7 +65,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/dataset/list")
|
|
|
@RequestMapping(value="/dataset/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取适配数据集列表", produces = "application/json", notes = "获取适配数据集列表")
|
|
|
public String getDatasetList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -73,7 +76,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/metadata/list")
|
|
|
@RequestMapping(value = "/metadata/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取适配数据元列表", produces = "application/json", notes = "获取适配数据元列表")
|
|
|
public String getMetadataList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -84,7 +87,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/dict/list")
|
|
|
@RequestMapping(value = "/dict/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取标准字典列表", produces = "application/json", notes = "获取标准字典列表")
|
|
|
public String getDictList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -95,7 +98,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/dictItem/list")
|
|
|
@RequestMapping(value = "/dictItem/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "获取标准字典项列表", produces = "application/json", notes = "获取标准字典项列表")
|
|
|
public String getDictItemList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -106,8 +109,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequestMapping("/dataset/pageList")
|
|
|
@RequestMapping(value="/dataset/pageList",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "分页获取适配数据集列表", produces = "application/json", notes = "分页获取适配数据集列表")
|
|
|
public Collection<AdapterDatasetModel> datasetPageList(
|
|
|
@ApiParam(name = "version", value = "版本", defaultValue = "")
|
|
@ -131,7 +133,7 @@ public class AdapterCenterEndPoint extends BaseController {
|
|
|
return convertToModels(ls, new ArrayList<>(ls.size()), AdapterDatasetModel.class, fields);
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/metadata/pageList")
|
|
|
@RequestMapping(value="/metadata/pageList",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "分页获取适配数据元列表", produces = "application/json", notes = "分页获取适配数据元列表")
|
|
|
public Collection<AdapterMetadataModel> metadataPageList(
|
|
|
@ApiParam(name = "version", value = "版本", defaultValue = "")
|