All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 4m45s
- 新增单卡分配/回收 API(支持 ICCID 列表、号段范围、筛选条件三种选卡方式) - 新增资产分配记录查询 API(支持多条件筛选和分页) - 新增 AssetAllocationRecord 模型、Store、Service、Handler 完整实现 - 扩展 IotCardStore 新增批量更新、号段查询、筛选查询等方法 - 修复 GORM Callback 处理 slice 类型(BatchCreate)的问题 - 新增完整的单元测试和集成测试 - 同步 OpenSpec 规范并归档 change
63 lines
2.1 KiB
Go
63 lines
2.1 KiB
Go
package routes
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
"github.com/break/junhong_cmp_fiber/internal/handler/admin"
|
|
"github.com/break/junhong_cmp_fiber/internal/model/dto"
|
|
"github.com/break/junhong_cmp_fiber/pkg/openapi"
|
|
)
|
|
|
|
func registerIotCardRoutes(router fiber.Router, handler *admin.IotCardHandler, importHandler *admin.IotCardImportHandler, doc *openapi.Generator, basePath string) {
|
|
iotCards := router.Group("/iot-cards")
|
|
groupPath := basePath + "/iot-cards"
|
|
|
|
Register(iotCards, doc, groupPath, "GET", "/standalone", handler.ListStandalone, RouteSpec{
|
|
Summary: "单卡列表(未绑定设备)",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.ListStandaloneIotCardRequest),
|
|
Output: new(dto.ListStandaloneIotCardResponse),
|
|
Auth: true,
|
|
})
|
|
|
|
Register(iotCards, doc, groupPath, "POST", "/import", importHandler.Import, RouteSpec{
|
|
Summary: "批量导入ICCID",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.ImportIotCardRequest),
|
|
Output: new(dto.ImportIotCardResponse),
|
|
Auth: true,
|
|
})
|
|
|
|
Register(iotCards, doc, groupPath, "GET", "/import-tasks", importHandler.List, RouteSpec{
|
|
Summary: "导入任务列表",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.ListImportTaskRequest),
|
|
Output: new(dto.ListImportTaskResponse),
|
|
Auth: true,
|
|
})
|
|
|
|
Register(iotCards, doc, groupPath, "GET", "/import-tasks/:id", importHandler.GetByID, RouteSpec{
|
|
Summary: "导入任务详情",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.GetImportTaskRequest),
|
|
Output: new(dto.ImportTaskDetailResponse),
|
|
Auth: true,
|
|
})
|
|
|
|
Register(iotCards, doc, groupPath, "POST", "/standalone/allocate", handler.AllocateCards, RouteSpec{
|
|
Summary: "批量分配单卡",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.AllocateStandaloneCardsRequest),
|
|
Output: new(dto.AllocateStandaloneCardsResponse),
|
|
Auth: true,
|
|
})
|
|
|
|
Register(iotCards, doc, groupPath, "POST", "/standalone/recall", handler.RecallCards, RouteSpec{
|
|
Summary: "批量回收单卡",
|
|
Tags: []string{"IoT卡管理"},
|
|
Input: new(dto.RecallStandaloneCardsRequest),
|
|
Output: new(dto.RecallStandaloneCardsResponse),
|
|
Auth: true,
|
|
})
|
|
}
|