public SystemPage getSearchSystem(String name,int pageno,int pagesize)
{
commandContext.clear();
commandContext.setCommandName("getSystemCommonVOs");
commandContext.setServiceName("systemService");
SystemCommonVO vo = new SystemCommonVO();
HashMap<String,Object> parmap = new HashMap<String,Object>(2);
parmap.put("name",name);
vo.setSQLStatement("system.getSystemsByConfigMap", parmap);
vo.setSQLTable("SYSSYSTEM");
commandContext.setCommandParams(new Object[]{vo,pageno,pagesize},new Class[]{SystemCommonVO.class,Integer.class,Integer.class});
SystemPage page = (SystemPage)this.executeCommandContext().getResult();
return page;
}