faq
This commit is contained in:
@@ -1 +1,10 @@
|
||||
package gmodel
|
||||
|
||||
import "context"
|
||||
|
||||
func (m *FsFaqModel) FindOneByTagId(ctx context.Context, tagId int, STATUS_ON int64) (faqs []*FsFaq, err error) {
|
||||
err = m.db.WithContext(ctx).
|
||||
Select("id", "tag_id", "tag_name", "title", "content").
|
||||
Where("tag_id = ? AND status = ?", tagId, STATUS_ON).Order("sort DESC").Find(&faqs).Error
|
||||
return faqs, err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user