## 配置信息
Swagger里使用```@SWG\Info```來配置文檔的相關信息,例如:
```
/**
* @SWG\Swagger(
* schemes={"http"}, 訪問協議
* host="www.tp.com.cn/", api鏈接地址
* basePath="/", 訪問路徑
* @SWG\Info(
* title="API文檔", 名稱
* version="1.0.0", 版本號
* description="本文檔僅限于測試", 描述
* )
```