数据分析平台 测试文件导入生成PBI接口

This commit is contained in:
jh_peng 2025-03-11 18:15:54 +08:00
parent 12b03fcb2b
commit 98fdccf628

View File

@ -26,3 +26,15 @@ func InitTestDataService() *TestDataService {
func (S *TestDataService) FactorySelection(c *gin.Context) { func (S *TestDataService) FactorySelection(c *gin.Context) {
response.OkWithData(erp.GetFactorySelections(), c) response.OkWithData(erp.GetFactorySelections(), c)
} }
// @Tags 数据分析平台
// @Summary 报警设置窗口-产品选项
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// -// @Param data body request.QuerySelection true "查询参数"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"操作成功"}"
// @Router /testData/warning/productSelection [get]
func (S *TestDataService) GetAllProductSelection(c *gin.Context) {
response.OkWithData(erp.GetAllProductSelection(), c)
}