Files
ai-agent/internal/repositories/quick_reply_repository.go
T
mlogclub 79614b2d07 Refactor import paths to use internal/pkg/httpx/params
- Updated multiple repository and service files to replace imports from "github.com/mlogclub/simple/web/params" with "cs-agent/internal/pkg/httpx/params".
- Adjusted context handling in auth_service and ws_service to use gin.Context instead of iris.Context.
- Ensured consistent usage of HTTP status responses across websocket handlers.
2026-05-23 22:10:20 +08:00

102 lines
2.7 KiB
Go

package repositories
import (
"cs-agent/internal/models"
"github.com/mlogclub/simple/sqls"
"cs-agent/internal/pkg/httpx/params"
"gorm.io/gorm"
)
var QuickReplyRepository = newQuickReplyRepository()
func newQuickReplyRepository() *quickReplyRepository {
return &quickReplyRepository{}
}
type quickReplyRepository struct {
}
func (r *quickReplyRepository) Get(db *gorm.DB, id int64) *models.QuickReply {
ret := &models.QuickReply{}
if err := db.First(ret, "id = ?", id).Error; err != nil {
return nil
}
return ret
}
func (r *quickReplyRepository) Take(db *gorm.DB, where ...interface{}) *models.QuickReply {
ret := &models.QuickReply{}
if err := db.Take(ret, where...).Error; err != nil {
return nil
}
return ret
}
func (r *quickReplyRepository) Find(db *gorm.DB, cnd *sqls.Cnd) (list []models.QuickReply) {
cnd.Find(db, &list)
return
}
func (r *quickReplyRepository) FindOne(db *gorm.DB, cnd *sqls.Cnd) *models.QuickReply {
ret := &models.QuickReply{}
if err := cnd.FindOne(db, &ret); err != nil {
return nil
}
return ret
}
func (r *quickReplyRepository) FindPageByParams(db *gorm.DB, params *params.QueryParams) (list []models.QuickReply, paging *sqls.Paging) {
return r.FindPageByCnd(db, &params.Cnd)
}
func (r *quickReplyRepository) FindPageByCnd(db *gorm.DB, cnd *sqls.Cnd) (list []models.QuickReply, paging *sqls.Paging) {
cnd.Find(db, &list)
count := cnd.Count(db, &models.QuickReply{})
paging = &sqls.Paging{
Page: cnd.Paging.Page,
Limit: cnd.Paging.Limit,
Total: count,
}
return
}
func (r *quickReplyRepository) FindBySql(db *gorm.DB, sqlStr string, paramArr ...interface{}) (list []models.QuickReply) {
db.Raw(sqlStr, paramArr...).Scan(&list)
return
}
func (r *quickReplyRepository) CountBySql(db *gorm.DB, sqlStr string, paramArr ...interface{}) (count int64) {
db.Raw(sqlStr, paramArr...).Count(&count)
return
}
func (r *quickReplyRepository) Count(db *gorm.DB, cnd *sqls.Cnd) int64 {
return cnd.Count(db, &models.QuickReply{})
}
func (r *quickReplyRepository) Create(db *gorm.DB, t *models.QuickReply) (err error) {
err = db.Create(t).Error
return
}
func (r *quickReplyRepository) Update(db *gorm.DB, t *models.QuickReply) (err error) {
err = db.Save(t).Error
return
}
func (r *quickReplyRepository) Updates(db *gorm.DB, id int64, columns map[string]interface{}) (err error) {
err = db.Model(&models.QuickReply{}).Where("id = ?", id).Updates(columns).Error
return
}
func (r *quickReplyRepository) UpdateColumn(db *gorm.DB, id int64, name string, value interface{}) (err error) {
err = db.Model(&models.QuickReply{}).Where("id = ?", id).UpdateColumn(name, value).Error
return
}
func (r *quickReplyRepository) Delete(db *gorm.DB, id int64) {
db.Delete(&models.QuickReply{}, "id = ?", id)
}