test_data/router/report.chart.selection.go
2024-09-13 15:30:53 +08:00

16 lines
483 B
Go

package router
import (
"github.com/gin-gonic/gin"
test_data "testData/api/test.data"
)
func InitReportChartSelectionRouter(R *gin.RouterGroup) {
reportChartService := test_data.InitReportChartSelectionService()
reportChartSelectionGroup := R.Group("")
{
reportChartSelectionGroup.POST("report/probabilitySelection/product", reportChartService.GetProductSelection)
reportChartSelectionGroup.POST("report/probabilitySelection/lot", reportChartService.GetLotSelection)
}
}