Files
gfast/app/controller/admin/cms_model.go
T
2020-03-13 18:36:32 +08:00

18 lines
316 B
Go

package admin
import (
"gfast/library/response"
"github.com/gogf/gf/net/ghttp"
)
type CmsModel struct{}
func (c *CmsModel) List(r *ghttp.Request) {
response.FailJson(true, r, "功能开发中...")
}
//添加模型
func (c *CmsModel) Add(r *ghttp.Request) {
response.FailJson(true, r, "功能开发中...")
}