mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-22 18:37:41 +00:00
18 lines
316 B
Go
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, "功能开发中...")
|
|
}
|