字典管理

This commit is contained in:
yxh
2020-02-28 23:06:23 +08:00
parent ddf120e528
commit 3acb8ad2ce
16 changed files with 1427 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
package admin
import (
"gfast/library/response"
"github.com/gogf/gf/net/ghttp"
)
//cms栏目管理
type CmsMenu struct{}
func (c *CmsMenu) MenuList(r *ghttp.Request) {
response.SusJson(true, r, "栏目列表")
}