public LocationServiceVoCollection listLocationService(LocationRefVo voLocation)
{
DomainFactory factory = getDomainFactory();
if (voLocation == null)
return LocationServiceVoAssembler.createLocationServiceVoCollectionFromLocationService(factory.listDomainObjects(LocationService.class)).sort();
if (voLocation.getID_LocationIsNotNull())
{
java.util.List servactList = factory.find("from LocationService locService where locService.location.id = :locationId", new String[]{"locationId"}, new Object[]{voLocation.getID_Location()});
return LocationServiceVoAssembler.createLocationServiceVoCollectionFromLocationService(servactList).sort();
}
return null;
}
LocationServiceImpl.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:openmaxims-linux
作者:
评论列表
文章目录