类 SysConfController


  • @IocBean
    @At("/platform/sys/conf")
    public class SysConfController
    extends Object
    Created by wizzer on 2016/6/28.
    • 构造器详细资料

      • SysConfController

        public SysConfController()
    • 方法详细资料

      • index

        @At("")
        @Ok("beetl:/platform/sys/conf/index.html")
        public void index()
      • add

        @At
        @Ok("beetl:/platform/sys/conf/add.html")
        public void add()
      • addDo

        @At
        @Ok("json")
        @SLog(tag="\u6dfb\u52a0\u53c2\u6570",
              msg="${args[0].configKey}:${args[0].configValue}")
        public Object addDo​(@Param("..")
                            cn.wizzer.app.sys.modules.models.Sys_config conf)
      • edit

        @At("/edit/?")
        @Ok("beetl:/platform/sys/conf/edit.html")
        public Object edit​(String id)
      • editDo

        @At
        @Ok("json")
        @SLog(tag="\u4fee\u6539\u53c2\u6570",
              msg="${args[0].configKey}:${args[0].configValue}")
        public Object editDo​(@Param("..")
                             cn.wizzer.app.sys.modules.models.Sys_config conf)
      • delete

        @At("/delete/?")
        @Ok("json")
        @SLog(tag="\u5220\u9664\u53c2\u6570",
              msg="\u53c2\u6570:${args[0]}")
        public Object delete​(String configKey)
      • data

        @At
        @Ok("json:full")
        public Object data​(@Param("length")
                           int length,
                           @Param("start")
                           int start,
                           @Param("draw")
                           int draw,
                           @Param("::order")
                           List<cn.wizzer.framework.page.datatable.DataTableOrder> order,
                           @Param("::columns")
                           List<cn.wizzer.framework.page.datatable.DataTableColumn> columns)