新增测点配置

This commit is contained in:
2024-09-03 15:52:38 +08:00
parent bfb284c4cc
commit 3b53e9f9b7
37 changed files with 429 additions and 66 deletions

17
router/routes/common.go Normal file
View File

@@ -0,0 +1,17 @@
package routes
import (
v1 "energy-management-system/api/v1"
"github.com/gin-gonic/gin"
)
type Common struct{}
func (r *Common) InitCommon(Router *gin.RouterGroup) {
commonApi := Router.Group("common")
{
commonApi.GET("energyTypes", v1.Controllers.Common.GetEnergyTypeMap)
}
}