├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── docs └── _config.yml ├── pom.xml ├── roncoo-jui-springboot-common ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── roncoo │ │ └── jui │ │ └── common │ │ ├── dao │ │ ├── DataDictionaryDao.java │ │ ├── DataDictionaryListDao.java │ │ ├── RcDataDictionaryDao.java │ │ ├── RcDataDictionaryListDao.java │ │ ├── RcReportDao.java │ │ ├── ReportDao.java │ │ ├── SysMenuDao.java │ │ ├── SysMenuRoleDao.java │ │ ├── SysRoleDao.java │ │ ├── SysRoleUserDao.java │ │ ├── SysUserDao.java │ │ ├── WebSiteDao.java │ │ ├── WebSiteUrlDao.java │ │ └── impl │ │ │ ├── DataDictionaryDaoImpl.java │ │ │ ├── DataDictionaryListDaoImpl.java │ │ │ ├── RcDataDictionaryDaoImpl.java │ │ │ ├── RcDataDictionaryListDaoImpl.java │ │ │ ├── RcReportDaoImpl.java │ │ │ ├── ReportDaoImpl.java │ │ │ ├── SysMenuDaoImpl.java │ │ │ ├── SysMenuRoleDaoImpl.java │ │ │ ├── SysRoleDaoImpl.java │ │ │ ├── SysRoleUserDaoImpl.java │ │ │ ├── SysUserDaoImpl.java │ │ │ ├── WebSiteDaoImpl.java │ │ │ └── WebSiteUrlDaoImpl.java │ │ ├── entity │ │ ├── RcDataDictionary.java │ │ ├── RcDataDictionaryExample.java │ │ ├── RcDataDictionaryList.java │ │ ├── RcDataDictionaryListExample.java │ │ ├── RcReport.java │ │ ├── RcReportExample.java │ │ ├── SysMenu.java │ │ ├── SysMenuExample.java │ │ ├── SysMenuRole.java │ │ ├── SysMenuRoleExample.java │ │ ├── SysRole.java │ │ ├── SysRoleExample.java │ │ ├── SysRoleUser.java │ │ ├── SysRoleUserExample.java │ │ ├── SysUser.java │ │ ├── SysUserExample.java │ │ ├── WebSite.java │ │ ├── WebSiteExample.java │ │ ├── WebSiteUrl.java │ │ └── WebSiteUrlExample.java │ │ ├── enums │ │ ├── ResultEnum.java │ │ ├── StatusIdEnum.java │ │ ├── UserSexEnum.java │ │ └── UserStatusEnum.java │ │ ├── mapper │ │ ├── RcDataDictionaryListMapper.java │ │ ├── RcDataDictionaryMapper.java │ │ ├── RcReportMapper.java │ │ ├── SysMenuMapper.java │ │ ├── SysMenuRoleMapper.java │ │ ├── SysRoleMapper.java │ │ ├── SysRoleUserMapper.java │ │ ├── SysUserMapper.java │ │ ├── WebSiteMapper.java │ │ └── WebSiteUrlMapper.java │ │ └── util │ │ ├── ArrayListUtil.java │ │ ├── ConfUtil.java │ │ ├── Constants.java │ │ ├── DateUtil.java │ │ ├── HttpUtil.java │ │ ├── JSONUtil.java │ │ ├── MD5Util.java │ │ ├── PageUtil.java │ │ ├── SqlUtil.java │ │ ├── base │ │ ├── Base.java │ │ ├── BaseController.java │ │ ├── Result.java │ │ └── RoncooException.java │ │ ├── excel │ │ ├── ExcelUtil.java │ │ └── ReportExcelUtil.java │ │ ├── filter │ │ └── XSSFilter.java │ │ └── jui │ │ ├── Jui.java │ │ └── Page.java │ └── resources │ └── mybatis │ ├── RcDataDictionaryListMapper.xml │ ├── RcDataDictionaryMapper.xml │ ├── RcReportMapper.xml │ ├── SysMenuMapper.xml │ ├── SysMenuRoleMapper.xml │ ├── SysRoleMapper.xml │ ├── SysRoleUserMapper.xml │ ├── SysUserMapper.xml │ ├── WebSiteMapper.xml │ └── WebSiteUrlMapper.xml ├── roncoo-jui-springboot-web ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── roncoo │ │ └── jui │ │ ├── RoncooJuiSpringbootWebApplication.java │ │ └── web │ │ ├── bean │ │ ├── qo │ │ │ ├── RcDataDictionaryListQO.java │ │ │ ├── RcDataDictionaryQO.java │ │ │ ├── RcReportQO.java │ │ │ ├── SysMenuQO.java │ │ │ ├── SysMenuRoleQO.java │ │ │ ├── SysRoleQO.java │ │ │ ├── SysRoleUserQO.java │ │ │ ├── SysUserQO.java │ │ │ ├── WebSiteQO.java │ │ │ └── WebSiteUrlQO.java │ │ └── vo │ │ │ ├── RcDataDictionaryListVO.java │ │ │ ├── RcDataDictionaryVO.java │ │ │ ├── RcReportVO.java │ │ │ ├── SysMenuRoleVO.java │ │ │ ├── SysMenuVO.java │ │ │ ├── SysRoleUserVO.java │ │ │ ├── SysRoleVO.java │ │ │ ├── SysUserVO.java │ │ │ ├── WebSiteUrlVO.java │ │ │ └── WebSiteVO.java │ │ ├── controller │ │ ├── IndexController.java │ │ ├── LoginController.java │ │ └── admin │ │ │ ├── RcDataDictionaryController.java │ │ │ ├── RcDataDictionaryListController.java │ │ │ ├── RcReportController.java │ │ │ ├── SysMenuController.java │ │ │ ├── SysMenuRoleController.java │ │ │ ├── SysRoleController.java │ │ │ ├── SysRoleUserController.java │ │ │ ├── SysUserController.java │ │ │ ├── WebSiteController.java │ │ │ └── WebSiteUrlController.java │ │ ├── custom │ │ ├── RoncooExceptionHandler.java │ │ ├── ShiroConfiguration.java │ │ ├── ShiroFreeMarkerWebConfiguration.java │ │ ├── WebMvcConfigurer.java │ │ └── WebXssFilter.java │ │ └── service │ │ ├── RcDataDictionaryListService.java │ │ ├── RcDataDictionaryService.java │ │ ├── RcReportService.java │ │ ├── SysMenuRoleService.java │ │ ├── SysMenuService.java │ │ ├── SysRoleService.java │ │ ├── SysRoleUserService.java │ │ ├── SysUserService.java │ │ ├── WebSiteService.java │ │ └── WebSiteUrlService.java │ └── resources │ ├── application-dev.properties │ ├── application-prod.properties │ ├── application-test.properties │ ├── application.properties │ ├── config │ └── test │ │ └── system.properties │ ├── logback-roncoo.xml │ ├── static │ └── dwz_jui │ │ ├── bin │ │ ├── ESC.wsf │ │ ├── dwz.min.js │ │ ├── gzip.exe │ │ ├── gzjs-esc.bat │ │ ├── gzjs.sh │ │ └── yuicompressor-2.4.8.jar │ │ ├── chart │ │ ├── g.bar.js │ │ ├── g.dot.js │ │ ├── g.line.js │ │ ├── g.pie.js │ │ ├── g.raphael.js │ │ ├── raphael-min.js │ │ ├── raphael.js │ │ └── test │ │ │ ├── barchart.html │ │ │ ├── hbarchart.html │ │ │ ├── linechart.html │ │ │ ├── linechart2.html │ │ │ ├── linechart3.html │ │ │ └── piechart.html │ │ ├── dwz.frag.xml │ │ ├── favicon.ico │ │ ├── js │ │ ├── dwz.accordion.js │ │ ├── dwz.ajax.js │ │ ├── dwz.alertMsg.js │ │ ├── dwz.barDrag.js │ │ ├── dwz.checkbox.js │ │ ├── dwz.combox.js │ │ ├── dwz.contextmenu.js │ │ ├── dwz.core.js │ │ ├── dwz.cssTable.js │ │ ├── dwz.database.js │ │ ├── dwz.datepicker.js │ │ ├── dwz.dialog.js │ │ ├── dwz.dialogDrag.js │ │ ├── dwz.drag.js │ │ ├── dwz.effects.js │ │ ├── dwz.file.js │ │ ├── dwz.history.js │ │ ├── dwz.miscDrag.js │ │ ├── dwz.navTab.js │ │ ├── dwz.pagination.js │ │ ├── dwz.panel.js │ │ ├── dwz.print.js │ │ ├── dwz.regional.zh.js │ │ ├── dwz.resize.js │ │ ├── dwz.scrollCenter.js │ │ ├── dwz.sortDrag.js │ │ ├── dwz.stable.js │ │ ├── dwz.switchEnv.js │ │ ├── dwz.tab.js │ │ ├── dwz.taskBar.js │ │ ├── dwz.theme.js │ │ ├── dwz.tree.js │ │ ├── dwz.ui.js │ │ ├── dwz.util.date.js │ │ ├── dwz.util.number.js │ │ ├── dwz.validate.method.js │ │ ├── jquery-1.11.3.js │ │ ├── jquery-1.11.3.min.js │ │ ├── jquery-2.1.4.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery.bgiframe.js │ │ ├── jquery.cookie.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── speedup.js │ │ ├── themes │ │ ├── azure │ │ │ ├── images │ │ │ │ ├── accordion │ │ │ │ │ └── accordion.png │ │ │ │ ├── account_info_bg.png │ │ │ │ ├── alert │ │ │ │ │ ├── alertpanel.png │ │ │ │ │ └── alertpanel_icon.png │ │ │ │ ├── button │ │ │ │ │ ├── button_s.png │ │ │ │ │ ├── imgX.gif │ │ │ │ │ └── imgX.png │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogpanel.png │ │ │ │ │ └── dialogpanel_icon.png │ │ │ │ ├── form │ │ │ │ │ ├── input_bg.png │ │ │ │ │ └── input_bt.png │ │ │ │ ├── grid │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── resizeCol.png │ │ │ │ │ └── tableth.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── icon.png │ │ │ │ ├── layout │ │ │ │ │ ├── taskbar.png │ │ │ │ │ ├── taskbar_control.png │ │ │ │ │ ├── taskbar_icon.png │ │ │ │ │ └── toggleSidebar.png │ │ │ │ ├── listLine.png │ │ │ │ ├── menu │ │ │ │ │ └── menu.png │ │ │ │ ├── order_down.gif │ │ │ │ ├── order_up.gif │ │ │ │ ├── pageHeader_bg.png │ │ │ │ ├── panel │ │ │ │ │ ├── panel.png │ │ │ │ │ └── panel_icon.png │ │ │ │ ├── preview.png │ │ │ │ ├── progressBar │ │ │ │ │ ├── progressBar_l.gif │ │ │ │ │ ├── progressBar_m.gif │ │ │ │ │ └── progressBar_s.gif │ │ │ │ ├── search-bg.gif │ │ │ │ ├── search-bt.gif │ │ │ │ ├── shadow │ │ │ │ │ ├── shadow_c_c.png │ │ │ │ │ ├── shadow_c_l.png │ │ │ │ │ ├── shadow_c_r.png │ │ │ │ │ ├── shadow_f_c.png │ │ │ │ │ ├── shadow_f_l.png │ │ │ │ │ ├── shadow_f_r.png │ │ │ │ │ ├── shadow_h_c.png │ │ │ │ │ ├── shadow_h_l.png │ │ │ │ │ └── shadow_h_r.png │ │ │ │ ├── tabs │ │ │ │ │ ├── tabscontrol.png │ │ │ │ │ ├── tabspage.png │ │ │ │ │ ├── tabspage_icon.png │ │ │ │ │ └── tabspanel.png │ │ │ │ └── tree │ │ │ │ │ ├── check.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── tree.png │ │ │ └── style.css │ │ ├── css │ │ │ ├── core.css │ │ │ ├── ieHack.css │ │ │ ├── login.css │ │ │ └── print.css │ │ ├── default │ │ │ ├── images │ │ │ │ ├── accordion │ │ │ │ │ └── accordion.png │ │ │ │ ├── account_info_bg.png │ │ │ │ ├── alert │ │ │ │ │ ├── alertpanel.png │ │ │ │ │ └── alertpanel_icon.png │ │ │ │ ├── button │ │ │ │ │ ├── button_s.png │ │ │ │ │ ├── imgX.gif │ │ │ │ │ ├── toleft.gif │ │ │ │ │ ├── toleftone.gif │ │ │ │ │ ├── toright.gif │ │ │ │ │ └── torightone.gif │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogpanel.png │ │ │ │ │ └── dialogpanel_icon.png │ │ │ │ ├── form │ │ │ │ │ ├── input_bg.png │ │ │ │ │ └── input_bt.png │ │ │ │ ├── grid │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── resizeCol.png │ │ │ │ │ └── tableth.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── icon.png │ │ │ │ ├── layout │ │ │ │ │ ├── taskbar.png │ │ │ │ │ ├── taskbar_control.png │ │ │ │ │ ├── taskbar_icon.png │ │ │ │ │ └── toggleSidebar.png │ │ │ │ ├── listLine.png │ │ │ │ ├── login_banner.jpg │ │ │ │ ├── login_bg.png │ │ │ │ ├── login_content_bg.png │ │ │ │ ├── login_header_bg.png │ │ │ │ ├── login_list.png │ │ │ │ ├── login_logo.gif │ │ │ │ ├── login_sub.png │ │ │ │ ├── login_title.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu │ │ │ │ │ └── menu.png │ │ │ │ ├── order_down.gif │ │ │ │ ├── order_up.gif │ │ │ │ ├── pageHeader_bg.png │ │ │ │ ├── panel │ │ │ │ │ ├── panel.png │ │ │ │ │ └── panel_icon.png │ │ │ │ ├── progressBar │ │ │ │ │ ├── progressBar_l.gif │ │ │ │ │ ├── progressBar_m.gif │ │ │ │ │ └── progressBar_s.gif │ │ │ │ ├── search-bg.gif │ │ │ │ ├── search-bt.gif │ │ │ │ ├── shadow │ │ │ │ │ ├── shadow_c_c.png │ │ │ │ │ ├── shadow_c_l.png │ │ │ │ │ ├── shadow_c_r.png │ │ │ │ │ ├── shadow_f_c.png │ │ │ │ │ ├── shadow_f_l.png │ │ │ │ │ ├── shadow_f_r.png │ │ │ │ │ ├── shadow_h_c.png │ │ │ │ │ ├── shadow_h_l.png │ │ │ │ │ └── shadow_h_r.png │ │ │ │ ├── tabs │ │ │ │ │ ├── tabscontrol.png │ │ │ │ │ ├── tabspage.png │ │ │ │ │ ├── tabspage_icon.png │ │ │ │ │ └── tabspanel.png │ │ │ │ ├── themeButton.png │ │ │ │ ├── tree │ │ │ │ │ ├── check.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── tree.png │ │ │ │ ├── wx.png │ │ │ │ └── zfb.png │ │ │ └── style.css │ │ ├── green │ │ │ ├── images │ │ │ │ ├── accordion │ │ │ │ │ └── accordion.png │ │ │ │ ├── account_info_bg.png │ │ │ │ ├── alert │ │ │ │ │ ├── alertpanel.png │ │ │ │ │ └── alertpanel_icon.png │ │ │ │ ├── button │ │ │ │ │ ├── button_s.png │ │ │ │ │ └── imgX.gif │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogpanel.png │ │ │ │ │ └── dialogpanel_icon.png │ │ │ │ ├── form │ │ │ │ │ ├── input_bg.png │ │ │ │ │ └── input_bt.png │ │ │ │ ├── grid │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── resizeCol.png │ │ │ │ │ └── tableth.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── layout │ │ │ │ │ └── toggleSidebar.png │ │ │ │ ├── listLine.png │ │ │ │ ├── logo.png │ │ │ │ ├── pageHeader_bg.png │ │ │ │ ├── panel │ │ │ │ │ ├── panel.png │ │ │ │ │ └── panel_icon.png │ │ │ │ ├── tabs │ │ │ │ │ ├── tabscontrol.png │ │ │ │ │ ├── tabspage.png │ │ │ │ │ ├── tabspage_icon.png │ │ │ │ │ └── tabspanel.png │ │ │ │ └── tree │ │ │ │ │ └── tree.png │ │ │ └── style.css │ │ ├── miscDrag │ │ │ └── screen.css │ │ ├── purple │ │ │ ├── images │ │ │ │ ├── accordion │ │ │ │ │ └── accordion.png │ │ │ │ ├── account_info_bg.png │ │ │ │ ├── alert │ │ │ │ │ ├── alertpanel.png │ │ │ │ │ └── alertpanel_icon.png │ │ │ │ ├── button │ │ │ │ │ ├── button_s.png │ │ │ │ │ └── imgX.gif │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogpanel.png │ │ │ │ │ └── dialogpanel_icon.png │ │ │ │ ├── form │ │ │ │ │ ├── input_bg.png │ │ │ │ │ └── input_bt.png │ │ │ │ ├── grid │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── resizeCol.png │ │ │ │ │ └── tableth.png │ │ │ │ ├── header_bg.png │ │ │ │ ├── layout │ │ │ │ │ ├── taskbar.png │ │ │ │ │ ├── taskbar_control.png │ │ │ │ │ ├── taskbar_icon.png │ │ │ │ │ └── toggleSidebar.png │ │ │ │ ├── login_bg.png │ │ │ │ ├── login_content_bg.png │ │ │ │ ├── login_header_bg.png │ │ │ │ ├── login_list.png │ │ │ │ ├── menu │ │ │ │ │ └── menu.png │ │ │ │ ├── pageHeader_bg.png │ │ │ │ ├── panel │ │ │ │ │ ├── panel.png │ │ │ │ │ └── panel_icon.png │ │ │ │ ├── progressBar │ │ │ │ │ ├── progressBar_l.gif │ │ │ │ │ ├── progressBar_m.gif │ │ │ │ │ └── progressBar_s.gif │ │ │ │ ├── shadow │ │ │ │ │ ├── shadow_c_c.png │ │ │ │ │ ├── shadow_c_l.png │ │ │ │ │ ├── shadow_c_r.png │ │ │ │ │ ├── shadow_f_c.png │ │ │ │ │ ├── shadow_f_l.png │ │ │ │ │ ├── shadow_f_r.png │ │ │ │ │ ├── shadow_h_c.png │ │ │ │ │ ├── shadow_h_l.png │ │ │ │ │ └── shadow_h_r.png │ │ │ │ ├── tabs │ │ │ │ │ ├── tabscontrol.png │ │ │ │ │ ├── tabspage.png │ │ │ │ │ ├── tabspage_icon.png │ │ │ │ │ └── tabspanel.png │ │ │ │ └── tree │ │ │ │ │ ├── check.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── tree.png │ │ │ └── style.css │ │ └── silver │ │ │ ├── images │ │ │ ├── accordion │ │ │ │ └── accordion.png │ │ │ ├── account_info_bg.png │ │ │ ├── alert │ │ │ │ ├── alertpanel.png │ │ │ │ └── alertpanel_icon.png │ │ │ ├── button │ │ │ │ ├── button_s.png │ │ │ │ └── imgX.gif │ │ │ ├── dialog │ │ │ │ ├── dialogpanel.png │ │ │ │ └── dialogpanel_icon.png │ │ │ ├── form │ │ │ │ ├── input_bg.png │ │ │ │ └── input_bt.png │ │ │ ├── grid │ │ │ │ ├── grid.png │ │ │ │ ├── resizeCol.png │ │ │ │ └── tableth.png │ │ │ ├── header_bg.png │ │ │ ├── layout │ │ │ │ ├── taskbar.png │ │ │ │ ├── taskbar_control.png │ │ │ │ ├── taskbar_icon.png │ │ │ │ └── toggleSidebar.png │ │ │ ├── listLine.png │ │ │ ├── menu │ │ │ │ └── menu.png │ │ │ ├── pageHeader_bg.png │ │ │ ├── panel │ │ │ │ ├── panel.png │ │ │ │ └── panel_icon.png │ │ │ ├── progressBar │ │ │ │ ├── progressBar_l.gif │ │ │ │ ├── progressBar_m.gif │ │ │ │ └── progressBar_s.gif │ │ │ ├── shadow │ │ │ │ ├── shadow_c_c.png │ │ │ │ ├── shadow_c_l.png │ │ │ │ ├── shadow_c_r.png │ │ │ │ ├── shadow_f_c.png │ │ │ │ ├── shadow_f_l.png │ │ │ │ ├── shadow_f_r.png │ │ │ │ ├── shadow_h_c.png │ │ │ │ ├── shadow_h_l.png │ │ │ │ └── shadow_h_r.png │ │ │ ├── tabs │ │ │ │ ├── tabscontrol.png │ │ │ │ ├── tabspage.png │ │ │ │ ├── tabspage_icon.png │ │ │ │ └── tabspanel.png │ │ │ └── tree │ │ │ │ ├── check.png │ │ │ │ ├── folder.png │ │ │ │ └── tree.png │ │ │ └── style.css │ │ ├── uploadify │ │ ├── Change Log.txt │ │ ├── css │ │ │ └── uploadify.css │ │ ├── img │ │ │ ├── add.jpg │ │ │ ├── cancel.jpg │ │ │ ├── delete.jpg │ │ │ ├── upload.jpg │ │ │ └── uploadify-cancel.png │ │ └── scripts │ │ │ ├── jquery.uploadify.js │ │ │ ├── jquery.uploadify.min.js │ │ │ └── uploadify.swf │ │ └── xheditor │ │ ├── xheditor-1.2.2.min.js │ │ ├── xheditor_emot │ │ ├── default │ │ │ ├── angry.gif │ │ │ ├── awkward.gif │ │ │ ├── bye.gif │ │ │ ├── config.txt │ │ │ ├── crazy.gif │ │ │ ├── cry.gif │ │ │ ├── curse.gif │ │ │ ├── cute.gif │ │ │ ├── despise.gif │ │ │ ├── doubt.gif │ │ │ ├── envy.gif │ │ │ ├── fastcry.gif │ │ │ ├── knock.gif │ │ │ ├── laugh.gif │ │ │ ├── mad.gif │ │ │ ├── ohmy.gif │ │ │ ├── panic.gif │ │ │ ├── proud.gif │ │ │ ├── quiet.gif │ │ │ ├── sad.gif │ │ │ ├── shutup.gif │ │ │ ├── shy.gif │ │ │ ├── sleep.gif │ │ │ ├── smile.gif │ │ │ ├── struggle.gif │ │ │ ├── titter.gif │ │ │ ├── tongue.gif │ │ │ ├── wail.gif │ │ │ └── wronged.gif │ │ ├── ipb │ │ │ ├── alien.gif │ │ │ ├── angel.gif │ │ │ ├── angry.gif │ │ │ ├── bandit.gif │ │ │ ├── biglaugh.gif │ │ │ ├── blink.gif │ │ │ ├── blush.gif │ │ │ ├── config.txt │ │ │ ├── cool.gif │ │ │ ├── cry.gif │ │ │ ├── depres.gif │ │ │ ├── devil.gif │ │ │ ├── glare.gif │ │ │ ├── heart.gif │ │ │ ├── joyful.gif │ │ │ ├── kiss.gif │ │ │ ├── laugh.gif │ │ │ ├── magician.gif │ │ │ ├── ninja.gif │ │ │ ├── pinch.gif │ │ │ ├── police.gif │ │ │ ├── sad.gif │ │ │ ├── sick.gif │ │ │ ├── sideways.gif │ │ │ ├── sleep.gif │ │ │ ├── smile.gif │ │ │ ├── surprised.gif │ │ │ ├── tongue.gif │ │ │ ├── unsure.gif │ │ │ ├── w00t.gif │ │ │ ├── whistling.gif │ │ │ ├── wondering.gif │ │ │ └── wub.gif │ │ ├── msn │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ └── pidgin │ │ │ ├── angry.gif │ │ │ ├── bad.gif │ │ │ ├── blush.gif │ │ │ ├── brokenheart.gif │ │ │ ├── bye.gif │ │ │ ├── coffee.gif │ │ │ ├── config.txt │ │ │ ├── cool.gif │ │ │ ├── cry.gif │ │ │ ├── curse.gif │ │ │ ├── cute.gif │ │ │ ├── devil.gif │ │ │ ├── envy.gif │ │ │ ├── gift.gif │ │ │ ├── good.gif │ │ │ ├── kiss.gif │ │ │ ├── laugh.gif │ │ │ ├── love.gif │ │ │ ├── music.gif │ │ │ ├── question.gif │ │ │ ├── rose.gif │ │ │ ├── sad.gif │ │ │ ├── shocked.gif │ │ │ ├── shout.gif │ │ │ ├── sick.gif │ │ │ ├── sleepy.gif │ │ │ ├── smile.gif │ │ │ ├── soccer.gif │ │ │ ├── sweat.gif │ │ │ ├── tired.gif │ │ │ ├── tongue.gif │ │ │ ├── victory.gif │ │ │ └── wink.gif │ │ ├── xheditor_lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ │ ├── xheditor_plugins │ │ ├── html2markdown.js │ │ ├── htmldomparser.js │ │ ├── multiupload │ │ │ ├── img │ │ │ │ ├── add.gif │ │ │ │ ├── bg1.gif │ │ │ │ ├── bg2.gif │ │ │ │ ├── btnbg.gif │ │ │ │ ├── btnbgr.gif │ │ │ │ ├── clear.gif │ │ │ │ ├── progressbg.gif │ │ │ │ └── start.gif │ │ │ ├── multiupload.css │ │ │ ├── multiupload.html │ │ │ ├── multiupload.js │ │ │ └── swfupload │ │ │ │ ├── swfupload.js │ │ │ │ └── swfupload.swf │ │ ├── showdown.js │ │ └── ubb.js │ │ └── xheditor_skin │ │ ├── blank.gif │ │ ├── default │ │ ├── iframe.css │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── close.gif │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── progress.gif │ │ │ ├── progressbg.gif │ │ │ ├── tag-address.gif │ │ │ ├── tag-div.gif │ │ │ ├── tag-h1.gif │ │ │ ├── tag-h2.gif │ │ │ ├── tag-h3.gif │ │ │ ├── tag-h4.gif │ │ │ ├── tag-h5.gif │ │ │ ├── tag-h6.gif │ │ │ ├── tag-p.gif │ │ │ ├── tag-pre.gif │ │ │ ├── waiting.gif │ │ │ ├── wmp.gif │ │ │ └── wordimg.gif │ │ └── ui.css │ │ ├── nostyle │ │ ├── iframe.css │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── close.gif │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── progress.gif │ │ │ ├── progressbg.gif │ │ │ ├── tag-address.gif │ │ │ ├── tag-div.gif │ │ │ ├── tag-h1.gif │ │ │ ├── tag-h2.gif │ │ │ ├── tag-h3.gif │ │ │ ├── tag-h4.gif │ │ │ ├── tag-h5.gif │ │ │ ├── tag-h6.gif │ │ │ ├── tag-p.gif │ │ │ ├── tag-pre.gif │ │ │ ├── waiting.gif │ │ │ ├── wmp.gif │ │ │ └── wordimg.gif │ │ └── ui.css │ │ ├── o2007blue │ │ ├── iframe.css │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── buttonbg.gif │ │ │ ├── close.gif │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── progress.gif │ │ │ ├── progressbg.gif │ │ │ ├── tag-address.gif │ │ │ ├── tag-div.gif │ │ │ ├── tag-h1.gif │ │ │ ├── tag-h2.gif │ │ │ ├── tag-h3.gif │ │ │ ├── tag-h4.gif │ │ │ ├── tag-h5.gif │ │ │ ├── tag-h6.gif │ │ │ ├── tag-p.gif │ │ │ ├── tag-pre.gif │ │ │ ├── waiting.gif │ │ │ ├── wmp.gif │ │ │ └── wordimg.gif │ │ └── ui.css │ │ ├── o2007silver │ │ ├── iframe.css │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── buttonbg.gif │ │ │ ├── close.gif │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── progress.gif │ │ │ ├── progressbg.gif │ │ │ ├── tag-address.gif │ │ │ ├── tag-div.gif │ │ │ ├── tag-h1.gif │ │ │ ├── tag-h2.gif │ │ │ ├── tag-h3.gif │ │ │ ├── tag-h4.gif │ │ │ ├── tag-h5.gif │ │ │ ├── tag-h6.gif │ │ │ ├── tag-p.gif │ │ │ ├── tag-pre.gif │ │ │ ├── waiting.gif │ │ │ ├── wmp.gif │ │ │ └── wordimg.gif │ │ └── ui.css │ │ └── vista │ │ ├── iframe.css │ │ ├── img │ │ ├── anchor.gif │ │ ├── buttonbg.gif │ │ ├── close.gif │ │ ├── flash.gif │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── progress.gif │ │ ├── progressbg.gif │ │ ├── tag-address.gif │ │ ├── tag-div.gif │ │ ├── tag-h1.gif │ │ ├── tag-h2.gif │ │ ├── tag-h3.gif │ │ ├── tag-h4.gif │ │ ├── tag-h5.gif │ │ ├── tag-h6.gif │ │ ├── tag-p.gif │ │ ├── tag-pre.gif │ │ ├── titlebg.gif │ │ ├── waiting.gif │ │ ├── wmp.gif │ │ └── wordimg.gif │ │ └── ui.css │ ├── system.properties │ └── templates │ ├── admin │ ├── rcDataDictionary │ │ ├── add.ftl │ │ ├── edit.ftl │ │ └── list.ftl │ ├── rcDataDictionaryList │ │ ├── add.ftl │ │ ├── edit.ftl │ │ └── list.ftl │ ├── rcReport │ │ └── list.ftl │ ├── sysMenu │ │ ├── add.ftl │ │ ├── edit.ftl │ │ ├── list.ftl │ │ └── view.ftl │ ├── sysMenuRole │ │ └── set.ftl │ ├── sysRole │ │ ├── add.ftl │ │ ├── edit.ftl │ │ ├── list.ftl │ │ └── view.ftl │ ├── sysRoleUser │ │ └── set.ftl │ ├── sysUser │ │ ├── add.ftl │ │ ├── edit.ftl │ │ ├── list.ftl │ │ └── view.ftl │ ├── webSite │ │ ├── add.ftl │ │ ├── edit.ftl │ │ ├── list.ftl │ │ └── view.ftl │ └── webSiteUrl │ │ ├── add.ftl │ │ ├── edit.ftl │ │ ├── list.ftl │ │ └── view.ftl │ ├── content.ftl │ ├── error │ ├── 404.ftl │ └── 5xx.ftl │ ├── index.ftl │ ├── login.ftl │ ├── macro │ ├── base.ftl │ └── menu.ftl │ ├── main.ftl │ ├── menu.ftl │ └── timeout.ftl └── support ├── base.sh ├── images ├── main.png ├── menu.png ├── role.png └── user.png └── roncoo_jui_springboot_v1.sql /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */target/ 2 | *.project 3 | *.classpath 4 | *.project 5 | *.settings 6 | *.mvn 7 | *.project 8 | *.springBeans 9 | *.factorypath 10 | */src/main/resources/config/prod/ 11 | */src/main/resources/application-prod.properties -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/RcDataDictionaryDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.RcDataDictionary; 4 | import com.roncoo.jui.common.entity.RcDataDictionaryExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | 7 | public interface RcDataDictionaryDao { 8 | int save(RcDataDictionary record); 9 | 10 | int deleteById(Long id); 11 | 12 | int updateById(RcDataDictionary record); 13 | 14 | RcDataDictionary getById(Long id); 15 | 16 | Page listForPage(int pageCurrent, int pageSize, RcDataDictionaryExample example); 17 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/RcDataDictionaryListDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.RcDataDictionaryList; 4 | import com.roncoo.jui.common.entity.RcDataDictionaryListExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | 7 | public interface RcDataDictionaryListDao { 8 | int save(RcDataDictionaryList record); 9 | 10 | int deleteById(Long id); 11 | 12 | int updateById(RcDataDictionaryList record); 13 | 14 | RcDataDictionaryList getById(Long id); 15 | 16 | Page listForPage(int pageCurrent, int pageSize, RcDataDictionaryListExample example); 17 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/RcReportDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.RcReport; 4 | import com.roncoo.jui.common.entity.RcReportExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | 7 | public interface RcReportDao { 8 | int save(RcReport record); 9 | 10 | int deleteById(Long id); 11 | 12 | int updateById(RcReport record); 13 | 14 | RcReport getById(Long id); 15 | 16 | Page listForPage(int pageCurrent, int pageSize, RcReportExample example); 17 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/SysMenuDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.roncoo.jui.common.entity.SysMenu; 6 | import com.roncoo.jui.common.entity.SysMenuExample; 7 | import com.roncoo.jui.common.util.jui.Page; 8 | 9 | public interface SysMenuDao { 10 | int save(SysMenu record); 11 | 12 | int deleteById(Long id); 13 | 14 | int updateById(SysMenu record); 15 | 16 | SysMenu getById(Long id); 17 | 18 | Page listForPage(int pageCurrent, int pageSize, SysMenuExample example); 19 | 20 | List listByParentId(Long parentId); 21 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/SysMenuRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.roncoo.jui.common.entity.SysMenuRole; 6 | import com.roncoo.jui.common.entity.SysMenuRoleExample; 7 | import com.roncoo.jui.common.util.jui.Page; 8 | 9 | public interface SysMenuRoleDao { 10 | int save(SysMenuRole record); 11 | 12 | int deleteById(Long id); 13 | 14 | int updateById(SysMenuRole record); 15 | 16 | SysMenuRole getById(Long id); 17 | 18 | Page listForPage(int pageCurrent, int pageSize, SysMenuRoleExample example); 19 | 20 | List listByRoleId(Long roleId); 21 | 22 | int deleteByRoleId(Long roleId); 23 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/SysRoleDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.SysRole; 4 | import com.roncoo.jui.common.entity.SysRoleExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | 7 | public interface SysRoleDao { 8 | int save(SysRole record); 9 | 10 | int deleteById(Long id); 11 | 12 | int updateById(SysRole record); 13 | 14 | SysRole getById(Long id); 15 | 16 | Page listForPage(int pageCurrent, int pageSize, SysRoleExample example); 17 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/SysRoleUserDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import java.util.List; 4 | 5 | import com.roncoo.jui.common.entity.SysRoleUser; 6 | import com.roncoo.jui.common.entity.SysRoleUserExample; 7 | import com.roncoo.jui.common.util.jui.Page; 8 | 9 | 10 | public interface SysRoleUserDao { 11 | int save(SysRoleUser record); 12 | 13 | int deleteById(Long id); 14 | 15 | int updateById(SysRoleUser record); 16 | 17 | SysRoleUser getById(Long id); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, SysRoleUserExample example); 20 | 21 | List listByUserId(Long userId); 22 | 23 | int deleteByUserId(Long userId); 24 | 25 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/SysUserDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.SysUser; 4 | import com.roncoo.jui.common.entity.SysUserExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | 7 | public interface SysUserDao { 8 | int save(SysUser record); 9 | 10 | int deleteById(Long id); 11 | 12 | int updateById(SysUser record); 13 | 14 | SysUser getById(Long id); 15 | 16 | Page listForPage(int pageCurrent, int pageSize, SysUserExample example); 17 | 18 | SysUser getByUserPhone(String userPhone); 19 | 20 | SysUser getByUserEmail(String userEmail); 21 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/WebSiteDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.WebSite; 4 | import com.roncoo.jui.common.entity.WebSiteExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | import java.util.List; 7 | 8 | public interface WebSiteDao { 9 | int save(WebSite record); 10 | 11 | int deleteById(Long id); 12 | 13 | int updateById(WebSite record); 14 | 15 | WebSite getById(Long id); 16 | 17 | List listByExample(WebSiteExample example); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, WebSiteExample example); 20 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/dao/WebSiteUrlDao.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.dao; 2 | 3 | import com.roncoo.jui.common.entity.WebSiteUrl; 4 | import com.roncoo.jui.common.entity.WebSiteUrlExample; 5 | import com.roncoo.jui.common.util.jui.Page; 6 | import java.util.List; 7 | 8 | public interface WebSiteUrlDao { 9 | int save(WebSiteUrl record); 10 | 11 | int deleteById(Long id); 12 | 13 | int updateById(WebSiteUrl record); 14 | 15 | WebSiteUrl getById(Long id); 16 | 17 | List listByExample(WebSiteUrlExample example); 18 | 19 | Page listForPage(int pageCurrent, int pageSize, WebSiteUrlExample example); 20 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/enums/ResultEnum.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.enums; 2 | 3 | import lombok.Getter; 4 | 5 | @Getter 6 | public enum ResultEnum { 7 | 8 | SUCCESS(200, "成功"), ERROR(99, "失败"); 9 | 10 | private Integer code; 11 | 12 | private String desc; 13 | 14 | private ResultEnum(Integer code, String desc) { 15 | this.code = code; 16 | this.desc = desc; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/enums/StatusIdEnum.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.enums; 2 | 3 | import lombok.Getter; 4 | 5 | @Getter 6 | public enum StatusIdEnum { 7 | 8 | YES("1", "可用"), NO("0", "禁用"); 9 | 10 | private String code; 11 | 12 | private String desc; 13 | 14 | private StatusIdEnum(String code, String desc) { 15 | this.code = code; 16 | this.desc = desc; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/enums/UserSexEnum.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.enums; 2 | 3 | import lombok.Getter; 4 | 5 | /** 6 | * 用户性别 7 | */ 8 | @Getter 9 | public enum UserSexEnum { 10 | 11 | MEN("1", "男"), WOMEN("2", "女"); 12 | 13 | private String code; 14 | 15 | private String desc; 16 | 17 | private UserSexEnum(String code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-common/src/main/java/com/roncoo/jui/common/enums/UserStatusEnum.java: -------------------------------------------------------------------------------- 1 | package com.roncoo.jui.common.enums; 2 | 3 | import lombok.Getter; 4 | 5 | /** 6 | * 用户状态 7 | */ 8 | @Getter 9 | public enum UserStatusEnum { 10 | 11 | NORMAL("1", "正常"), CANCEL("2", "注销"); 12 | 13 | private String code; 14 | 15 | private String desc; 16 | 17 | private UserStatusEnum(String code, String desc) { 18 | this.code = code; 19 | this.desc = desc; 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/config/test/system.properties: -------------------------------------------------------------------------------- 1 | env=test 2 | 3 | # file 4 | filePath=/tmp/uploadFile/ 5 | 6 | # user(超级管理员) 7 | user=18888888888 8 | 9 | # oauth2 10 | clientId=rc55582071e069423a8210b5a195877af0 11 | clientSecret=3602e619182b4fe7a10afba22e62143b7e8976007ce8407c85d6824024d97c08 12 | redirectUrl=http://roncoo.vicp.net/roncoo-jui-springboot/oauth2 13 | oauth2AuthorizeUrl=http://account.roncoo.com/authorize?clientId={CLIENTID}&responseType={RESPONSETYPE}&redirectUri={REDIRECTURI} 14 | apiAccessTokenUrl=http://api.roncoo.com/web/oauth2/token -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/bin/gzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/bin/gzip.exe -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/bin/yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/bin/yuicompressor-2.4.8.jar -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/favicon.ico -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/js/dwz.print.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author 张慧华 z@j-ui.com 3 | * 4 | */ 5 | (function($){ 6 | $.printBox = function(rel){ 7 | var _printBoxId = 'printBox'; 8 | var $contentBox = rel ? $('#'+rel) : $("body"), 9 | $printBox = $('#'+_printBoxId); 10 | 11 | if ($printBox.size()==0){ 12 | $printBox = $('
').appendTo("body"); 13 | } 14 | 15 | $printBox.html($contentBox.html()).find("[layoutH]").height("auto"); 16 | window.print(); 17 | 18 | } 19 | 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/static/dwz_jui/js/speedup.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author Roger Wu 3 | */ 4 | /*@cc_on _d=document;eval('var document=_d')@*/ 5 | /*@cc_on eval((function(props) {var code = [];for (var i = 0,l = props.length;i 2 |
3 |
4 |

5 | ${bean.roleName} 6 |

7 |
8 |
9 |
    10 |
  • 11 |
12 |
13 |
14 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/templates/admin/webSiteUrl/view.ftl: -------------------------------------------------------------------------------- 1 | <#assign base=request.contextPath /> 2 |
3 |
4 |

5 | ${bean.urlName} 6 |

7 |

8 | ${bean.inNet} 9 |

10 |

11 | ${bean.outNet} 12 |

13 |

14 | ${bean.urlDesc} 15 |

16 |
17 |
18 |
    19 |
  • 20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/templates/error/404.ftl: -------------------------------------------------------------------------------- 1 | { 2 | "statusCode":"404", 3 | "message":"找不到页面" 4 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/templates/error/5xx.ftl: -------------------------------------------------------------------------------- 1 | { 2 | "statusCode":"5xx", 3 | "message":"系统错误!" 4 | } -------------------------------------------------------------------------------- /roncoo-jui-springboot-web/src/main/resources/templates/timeout.ftl: -------------------------------------------------------------------------------- 1 | <#assign base=request.contextPath /> 2 | 5 | -------------------------------------------------------------------------------- /support/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/support/images/main.png -------------------------------------------------------------------------------- /support/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/support/images/menu.png -------------------------------------------------------------------------------- /support/images/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/support/images/role.png -------------------------------------------------------------------------------- /support/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roncoo/roncoo-jui-springboot/bfa5120e427c3a055d20180917acfce528d3d68c/support/images/user.png --------------------------------------------------------------------------------