求大神解释代码 public int deleteDocument(String[] ids) { SystemCommonVO vo = new SystemCommonVO(); commandContext.setServiceName("systemCommonService"); int i=0; for(int t=0;t<ids.length;t++) { vo = new SystemCommonVO(); vo.setField("D_ID",ids[0]); vo.setTablename("T_Document"); commandContext.clear(); commandContext.setCommandName("deleteSystemCommonVOs"); commandContext.setCommandParams(new Object[]{vo},new Class[]{SystemCommonVO.class}); i=i+(Integer)this.executeCommandContext().getResult(); } return i; }