cms_model.go 316 B

1234567891011121314151617
  1. package admin
  2. import (
  3. "gfast/library/response"
  4. "github.com/gogf/gf/net/ghttp"
  5. )
  6. type CmsModel struct{}
  7. func (c *CmsModel) List(r *ghttp.Request) {
  8. response.FailJson(true, r, "功能开发中...")
  9. }
  10. //添加模型
  11. func (c *CmsModel) Add(r *ghttp.Request) {
  12. response.FailJson(true, r, "功能开发中...")
  13. }