@At("")
@Ok("beetl:/platform/wf/model/index.html")
@RequiresPermissions("wf.cfg.model")
public void index(HttpServletRequest req) {
req.setAttribute("list", wfCategoryService.query(Cnd.orderBy().asc("location")));
}
<option value="">全部分类</option>
<%for(o in list){%>
<option value="${o.id!}" <%if(categoryId==o.id){%>selected<%}%>>${o.name!}</option>
<%}%>