feat: 迁移plant

This commit is contained in:
Blizzard
2026-05-23 13:55:05 +08:00
parent a93477ea8e
commit ae6d03d351
228 changed files with 25296 additions and 917 deletions
@@ -0,0 +1,22 @@
package banner
import (
"net/http"
"sundynix-micro-go/app/plant/api/internal/logic/banner"
"sundynix-micro-go/app/plant/api/internal/svc"
"sundynix-micro-go/common/response"
)
// 启用的Banner列表(客户端)
func GetActiveBannerListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := banner.NewGetActiveBannerListLogic(r.Context(), svcCtx)
resp, err := l.GetActiveBannerList()
if err != nil {
response.Fail(w, err.Error())
} else {
response.OkWithData(w, resp)
}
}
}