jeecg3.5.2中上傳下載文件的示例中的的一個bug

應該是工程師忘記拼裝查詢條件了,你須要修改SystemControler.java的documentList方法,修改以下java

/**
	 * 新聞法規文件列表
	 */
	@RequestMapping(params = "documentList")
	public void documentList(TSDocument document, HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) {
		CriteriaQuery cq = new CriteriaQuery(TSDocument.class, dataGrid);
		//查詢條件組裝器
        org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, document);
		String typecode = oConvertUtils.getString(request.getParameter("typecode"));
		cq.createAlias("TSType", "TSType");
		cq.eq("TSType.typecode", typecode);
		cq.add();
		this.systemService.getDataGridReturn(cq, true);
		TagUtil.datagrid(response, dataGrid);
	}
相關文章
相關標籤/搜索