public ServiceFunctionLiteVoCollection listServiceFunctions(ServiceRefVo service)
{
if(service == null || service.getID_Service() == null)
return null;
DomainFactory factory = getDomainFactory();
String hql = "select servfunc from ServiceFunction servfunc where servfunc.service.id = :serviceid and servfunc.isActive = 1 order by UPPER(servfunc.function.text) asc";
List servFuncList = factory.find(hql, new String[]{"serviceid"}, new Object[]{service.getID_Service()});
return ServiceFunctionLiteVoAssembler.createServiceFunctionLiteVoCollectionFromServiceFunction(servFuncList);
}
FutureAppointmentDetailsImpl.java 文件源码
java
阅读 17
收藏 0
点赞 0
评论 0
项目:openMAXIMS
作者:
评论列表
文章目录