1234567891011121314151617181920 |
- /*
- * @description: API接口相关
- * @Author: CP
- * @Date: 2020-09-17 11:48:40
- * @FilePath: \construction_management\web\controllers\api.go
- */
- package controllers
- import (
- "github.com/kataras/iris/v12"
- "go.mod/services"
- )
- type ApiController struct {
- //框架-web应用上下文环境
- Ctx iris.Context
- // 需要用的service
- ServiceProject services.ProjectService
- ServiceTree services.TreeService
- }
|