|
@ -52,7 +52,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
private String defaultOrgCode;
|
|
|
|
|
|
|
|
|
@RequestMapping(value="/stdInfo/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/stdInfo/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取版本列表", produces = "application/json", notes = "获取版本列表")
|
|
|
public String getStdInfo(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters) throws ParseException {
|
|
@ -62,7 +62,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequestMapping(value="/version/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/version/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
|
|
|
public String getVersions(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters) throws ParseException {
|
|
@ -73,7 +73,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/dataset/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/dataset/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取数据集列表", produces = "application/json", notes = "获取数据集列表")
|
|
|
public String getDatasetList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -84,7 +84,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/metadata/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/metadata/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取数据元列表", produces = "application/json", notes = "获取数据元列表")
|
|
|
public String getMetadataList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -95,7 +95,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/dict/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/dict/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取标准字典列表", produces = "application/json", notes = "获取标准字典列表")
|
|
|
public String getDictList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -108,7 +108,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/dictItem/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/dictItem/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取标准字典项列表", produces = "application/json", notes = "获取标准字典项列表")
|
|
|
public String getDictItemList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -119,7 +119,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/datasetIndex/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/datasetIndex/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取标准索引列表", produces = "application/json", notes = "获取标准索引列表")
|
|
|
public String getDatasetIndexList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters,
|
|
@ -130,7 +130,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/relation/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/relation/list",method = RequestMethod.GET,produces = "application/json")
|
|
|
@ApiOperation(value = "获取版本号列表", produces = "application/json", notes = "获取版本号列表")
|
|
|
public String getRelation(@ApiParam(name = "version", value = "版本", defaultValue = "")
|
|
|
@RequestParam(value = "version") String version,
|
|
@ -141,7 +141,7 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
return json.toString();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value="/lastDictItem/list",method = RequestMethod.GET)
|
|
|
@RequestMapping(value="/lastDictItem/list",method = RequestMethod.GET, produces = "application/json")
|
|
|
@ApiOperation(value = "根据字典code,获取健康之路最新的字典项", produces = "application/json", notes = "根据字典code,获取健康之路最新的字典项")
|
|
|
public List getLastDictItem(@ApiParam(name = "code", value = "字典code", defaultValue = "")
|
|
|
@RequestParam(value = "code") String code,
|