|
@ -144,14 +144,20 @@ public class StdCenterEndPoint extends BaseController {
|
|
|
@RequestMapping(value="/lastDictItem/list",method = RequestMethod.GET)
|
|
|
@ApiOperation(value = "根据字典code,获取健康之路最新的字典项", produces = "application/json", notes = "根据字典code,获取健康之路最新的字典项")
|
|
|
public List getLastDictItem(@ApiParam(name = "code", value = "字典code", defaultValue = "")
|
|
|
@RequestParam(value = "code") String code) throws IOException {
|
|
|
@RequestParam(value = "code") String code,
|
|
|
@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
|
|
|
@RequestParam(value = "filters", required = false) String filters) throws IOException {
|
|
|
List result = new ArrayList();
|
|
|
String ver = standardService.getLastStandByOrgCode(defaultOrgCode);
|
|
|
if(StringUtils.isNotBlank(ver)){
|
|
|
List<StdDictionaryModel> list = stdDictService.searchPage(StdDictionaryModel.class, StandardVersion.DictTable,ver, "code="+code, null, null, null,true);
|
|
|
if(CollectionUtils.isNotEmpty(list)){
|
|
|
Long id = list.get(0).getId();
|
|
|
result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id, null, null, null,true);
|
|
|
if(StringUtils.isBlank(filters)){
|
|
|
result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id, null, null, null,true);
|
|
|
}else{
|
|
|
result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id+";"+filters, null, null, null,true);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
return result;
|