cms_news.go 279 B

123456789101112131415161718
  1. package admin
  2. import (
  3. "gfast/library/response"
  4. "github.com/gogf/gf/net/ghttp"
  5. )
  6. type CmsNews struct{}
  7. func (c *CmsNews) List(r *ghttp.Request) {
  8. response.SusJson(true, r, "信息列表")
  9. }
  10. //添加信息
  11. func (c *CmsNews) Add(r *ghttp.Request) {
  12. //获取可选栏目
  13. }