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