cms_news.go 199 B

123456789101112
  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) NewsList(r *ghttp.Request) {
  8. response.SusJson(true, r, "信息列表")
  9. }