5d7c10aeab
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__. - Changed message types in support host bridge from "cs-agent" to "cs-ai-agent". - Minified SDK script updated to reflect new AI agent naming conventions. - Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
67 lines
2.4 KiB
Go
67 lines
2.4 KiB
Go
package services
|
|
|
|
import (
|
|
"cs-ai-agent/internal/models"
|
|
"cs-ai-agent/internal/repositories"
|
|
|
|
"cs-ai-agent/internal/pkg/httpx/params"
|
|
"github.com/mlogclub/simple/sqls"
|
|
)
|
|
|
|
var WxWorkKFConversationService = newWxWorkKFConversationService()
|
|
|
|
func newWxWorkKFConversationService() *wxWorkKFConversationService {
|
|
return &wxWorkKFConversationService{}
|
|
}
|
|
|
|
type wxWorkKFConversationService struct {
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Get(id int64) *models.WxWorkKFConversation {
|
|
return repositories.WxWorkKFConversationRepository.Get(sqls.DB(), id)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Take(where ...interface{}) *models.WxWorkKFConversation {
|
|
return repositories.WxWorkKFConversationRepository.Take(sqls.DB(), where...)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Find(cnd *sqls.Cnd) []models.WxWorkKFConversation {
|
|
return repositories.WxWorkKFConversationRepository.Find(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) FindOne(cnd *sqls.Cnd) *models.WxWorkKFConversation {
|
|
return repositories.WxWorkKFConversationRepository.FindOne(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) FindPageByParams(params *params.QueryParams) (list []models.WxWorkKFConversation, paging *sqls.Paging) {
|
|
return repositories.WxWorkKFConversationRepository.FindPageByParams(sqls.DB(), params)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) FindPageByCnd(cnd *sqls.Cnd) (list []models.WxWorkKFConversation, paging *sqls.Paging) {
|
|
return repositories.WxWorkKFConversationRepository.FindPageByCnd(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Count(cnd *sqls.Cnd) int64 {
|
|
return repositories.WxWorkKFConversationRepository.Count(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Create(t *models.WxWorkKFConversation) error {
|
|
return repositories.WxWorkKFConversationRepository.Create(sqls.DB(), t)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Update(t *models.WxWorkKFConversation) error {
|
|
return repositories.WxWorkKFConversationRepository.Update(sqls.DB(), t)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Updates(id int64, columns map[string]interface{}) error {
|
|
return repositories.WxWorkKFConversationRepository.Updates(sqls.DB(), id, columns)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) UpdateColumn(id int64, name string, value interface{}) error {
|
|
return repositories.WxWorkKFConversationRepository.UpdateColumn(sqls.DB(), id, name, value)
|
|
}
|
|
|
|
func (s *wxWorkKFConversationService) Delete(id int64) {
|
|
repositories.WxWorkKFConversationRepository.Delete(sqls.DB(), id)
|
|
}
|