3435363738394041424344
setAttr("collist", new String[]{"名称","备注"}); render("index.html"); } public void add() { Long id = getParaToLong(0, 0L); Role role=new Role(); if(id!=null&&id!=0){ role=Role.dao.findById(id); } setAttr("pojo",role); render("add.html");
434445464748495051525354555657
setAttr("pojo",role); render("add.html"); } public void save() { try{ Role m=getModel(Role.class); if(m.getLong("id")!=null){ m.update(); }else{ m.save(); } toDwzJson( 200, "保存成功!", navTabId); }catch(Exception e){ toDwzJson( 300, "保存异常!"); }