diff --git a/model/gmodel/fs_product_template_v2_logic.go b/model/gmodel/fs_product_template_v2_logic.go index 40a48c81..80617a45 100755 --- a/model/gmodel/fs_product_template_v2_logic.go +++ b/model/gmodel/fs_product_template_v2_logic.go @@ -74,17 +74,17 @@ func (t *FsProductTemplateV2Model) FindOneByModelId(ctx context.Context, modelId } type GetProductTemplateListByParamsReq struct { - ProductIds []int64 + ProductIds []int64 //必传哦 GroupBy string OrderBy string Fields string Status *int64 } func (t *FsProductTemplateV2Model) GetProductTemplateListByParams(ctx context.Context, req GetProductTemplateListByParamsReq) (resp []FsProductTemplateV2, err error) { - db := t.db.WithContext(ctx).Model(&FsProductTemplateV2{}) - if len(req.ProductIds) > 0{ - db = db.Where("`product_id` in (?)",req.ProductIds) + if len(req.ProductIds) == 0{ + return } + db := t.db.WithContext(ctx).Model(&FsProductTemplateV2{}).Where("`product_id` in (?)",req.ProductIds) if req.GroupBy != ""{ db = db.Group(req.GroupBy) }