12345678910111213141516171819 |
- package statistics
-
- import (
- "spaceofcheng/services/controllers"
- "spaceofcheng/services/service/statistics"
- )
-
- // StatisticsController 商品
- type StatisticsController struct {
- serv *statistics.StatisticsServ
- controllers.BaseController
- }
-
- // Constructor 初始化 Controller
- // @Title Constructor
- // @Description 初始化 Controller, 系统自动调用
- func (c *StatisticsController) Constructor() {
- c.serv = statistics.NewStatisticsServ(c.Context)
- }
|