go_dreamfactory/modules/web/api_opentime.go

18 lines
274 B
Go

package web
import (
"go_dreamfactory/lego/sys/gin/engine"
"net/http"
)
//获取开服时间
func (this *Api_Comp) Getopentime(c *engine.Context) {
c.JSON(http.StatusOK, &Respond{
Code: 0,
Message: "成功",
Data: this.module.service.GetOpentime(),
})
}