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.3 KiB
Go
67 lines
2.3 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 CustomerIdentityService = newCustomerIdentityService()
|
|
|
|
func newCustomerIdentityService() *customerIdentityService {
|
|
return &customerIdentityService{}
|
|
}
|
|
|
|
type customerIdentityService struct {
|
|
}
|
|
|
|
func (s *customerIdentityService) Get(id int64) *models.CustomerIdentity {
|
|
return repositories.CustomerIdentityRepository.Get(sqls.DB(), id)
|
|
}
|
|
|
|
func (s *customerIdentityService) Take(where ...interface{}) *models.CustomerIdentity {
|
|
return repositories.CustomerIdentityRepository.Take(sqls.DB(), where...)
|
|
}
|
|
|
|
func (s *customerIdentityService) Find(cnd *sqls.Cnd) []models.CustomerIdentity {
|
|
return repositories.CustomerIdentityRepository.Find(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *customerIdentityService) FindOne(cnd *sqls.Cnd) *models.CustomerIdentity {
|
|
return repositories.CustomerIdentityRepository.FindOne(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *customerIdentityService) FindPageByParams(params *params.QueryParams) (list []models.CustomerIdentity, paging *sqls.Paging) {
|
|
return repositories.CustomerIdentityRepository.FindPageByParams(sqls.DB(), params)
|
|
}
|
|
|
|
func (s *customerIdentityService) FindPageByCnd(cnd *sqls.Cnd) (list []models.CustomerIdentity, paging *sqls.Paging) {
|
|
return repositories.CustomerIdentityRepository.FindPageByCnd(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *customerIdentityService) Count(cnd *sqls.Cnd) int64 {
|
|
return repositories.CustomerIdentityRepository.Count(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *customerIdentityService) Create(t *models.CustomerIdentity) error {
|
|
return repositories.CustomerIdentityRepository.Create(sqls.DB(), t)
|
|
}
|
|
|
|
func (s *customerIdentityService) Update(t *models.CustomerIdentity) error {
|
|
return repositories.CustomerIdentityRepository.Update(sqls.DB(), t)
|
|
}
|
|
|
|
func (s *customerIdentityService) Updates(id int64, columns map[string]interface{}) error {
|
|
return repositories.CustomerIdentityRepository.Updates(sqls.DB(), id, columns)
|
|
}
|
|
|
|
func (s *customerIdentityService) UpdateColumn(id int64, name string, value interface{}) error {
|
|
return repositories.CustomerIdentityRepository.UpdateColumn(sqls.DB(), id, name, value)
|
|
}
|
|
|
|
func (s *customerIdentityService) Delete(id int64) {
|
|
repositories.CustomerIdentityRepository.Delete(sqls.DB(), id)
|
|
}
|