This commit is contained in:
laodaming
2023-10-26 11:11:49 +08:00
parent bd07bf3264
commit a240d9a3e3
2 changed files with 3 additions and 3 deletions

View File

@@ -88,9 +88,9 @@ func (p *FsProductModel) GetRandomProductList(ctx context.Context, limit int) (r
Where("`is_del` =? and `is_shelf` = ?", 0, 1).Order("RAND()").Limit(limit).Find(&resp).Error
return resp, err
}
func (p *FsProductModel) GetIgnoreRandomProductList(ctx context.Context, limit int, notInProductIds []int64) (resp []FsProduct, err error) {
func (p *FsProductModel) GetIgnoreRandomProductList(ctx context.Context, category int, limit int, notInProductIds []int64) (resp []FsProduct, err error) {
db := p.db.WithContext(ctx).Model(&FsProduct{}).
Where("`is_del` =? and `is_shelf` = ? ", 0, 1)
Where("`is_del` =? and `is_shelf` = ? and `category` = ?", 0, 1, category)
if len(notInProductIds) > 0 {
db = db.Where("`id` not in(?)", notInProductIds)
}