Files
2019-08-08 17:13:34 +08:00

12 lines
201 B
Go

package controllers
type SystemController struct {
BaseAdminController
}
func (this *SystemController) Base() {
this.Layout = "layout/page.html"
this.TplName = "system/base.html"
this.Render()
}