api.go 414 B

1234567891011121314151617181920
  1. /*
  2. * @description: API接口相关
  3. * @Author: CP
  4. * @Date: 2020-09-17 11:48:40
  5. * @FilePath: \construction_management\web\controllers\api.go
  6. */
  7. package controllers
  8. import (
  9. "github.com/kataras/iris/v12"
  10. "go.mod/services"
  11. )
  12. type ApiController struct {
  13. //框架-web应用上下文环境
  14. Ctx iris.Context
  15. // 需要用的service
  16. ServiceProject services.ProjectService
  17. ServiceTree services.TreeService
  18. }