Files
ai-agent/internal/services/skill_run_log_service.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

67 lines
2.1 KiB
Go

package services
import (
"cs-agent/internal/models"
"cs-agent/internal/repositories"
"cs-agent/internal/pkg/httpx/params"
"github.com/mlogclub/simple/sqls"
)
var SkillRunLogService = newSkillRunLogService()
func newSkillRunLogService() *skillRunLogService {
return &skillRunLogService{}
}
type skillRunLogService struct {
}
func (s *skillRunLogService) Get(id int64) *models.SkillRunLog {
return repositories.SkillRunLogRepository.Get(sqls.DB(), id)
}
func (s *skillRunLogService) Take(where ...interface{}) *models.SkillRunLog {
return repositories.SkillRunLogRepository.Take(sqls.DB(), where...)
}
func (s *skillRunLogService) Find(cnd *sqls.Cnd) []models.SkillRunLog {
return repositories.SkillRunLogRepository.Find(sqls.DB(), cnd)
}
func (s *skillRunLogService) FindOne(cnd *sqls.Cnd) *models.SkillRunLog {
return repositories.SkillRunLogRepository.FindOne(sqls.DB(), cnd)
}
func (s *skillRunLogService) FindPageByParams(params *params.QueryParams) (list []models.SkillRunLog, paging *sqls.Paging) {
return repositories.SkillRunLogRepository.FindPageByParams(sqls.DB(), params)
}
func (s *skillRunLogService) FindPageByCnd(cnd *sqls.Cnd) (list []models.SkillRunLog, paging *sqls.Paging) {
return repositories.SkillRunLogRepository.FindPageByCnd(sqls.DB(), cnd)
}
func (s *skillRunLogService) Count(cnd *sqls.Cnd) int64 {
return repositories.SkillRunLogRepository.Count(sqls.DB(), cnd)
}
func (s *skillRunLogService) Create(t *models.SkillRunLog) error {
return repositories.SkillRunLogRepository.Create(sqls.DB(), t)
}
func (s *skillRunLogService) Update(t *models.SkillRunLog) error {
return repositories.SkillRunLogRepository.Update(sqls.DB(), t)
}
func (s *skillRunLogService) Updates(id int64, columns map[string]interface{}) error {
return repositories.SkillRunLogRepository.Updates(sqls.DB(), id, columns)
}
func (s *skillRunLogService) UpdateColumn(id int64, name string, value interface{}) error {
return repositories.SkillRunLogRepository.UpdateColumn(sqls.DB(), id, name, value)
}
func (s *skillRunLogService) Delete(id int64) {
repositories.SkillRunLogRepository.Delete(sqls.DB(), id)
}