27 lines
729 B
Go
27 lines
729 B
Go
package coupon
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/perfect-panel/server/internal/logic/admin/coupon"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
"github.com/perfect-panel/server/pkg/result"
|
|
)
|
|
|
|
// Batch delete coupon
|
|
func BatchDeleteCouponHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
var req types.BatchDeleteCouponRequest
|
|
_ = c.ShouldBind(&req)
|
|
validateErr := svcCtx.Validate(&req)
|
|
if validateErr != nil {
|
|
result.ParamErrorResult(c, validateErr)
|
|
return
|
|
}
|
|
|
|
l := coupon.NewBatchDeleteCouponLogic(c.Request.Context(), svcCtx)
|
|
err := l.BatchDeleteCoupon(&req)
|
|
result.HttpResult(c, nil, err)
|
|
}
|
|
}
|