1、新增后台面板

2、查询页改三要素
3、佣金冻结
This commit is contained in:
2025-06-09 12:30:13 +08:00
parent 768da1fe47
commit 89bade9232
221 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package notification
import (
"net/http"
"qnc-server/app/user/cmd/api/internal/logic/notification"
"qnc-server/app/user/cmd/api/internal/svc"
"qnc-server/common/result"
)
func GetNotificationsHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
l := notification.NewGetNotificationsLogic(r.Context(), svcCtx)
resp, err := l.GetNotifications()
result.HttpResult(r, w, resp, err)
}
}