cutego/modules/core/service/cron_job_service.go

47 lines
1.1 KiB
Go
Raw Normal View History

2022-03-01 13:50:13 +08:00
package service
import (
2023-01-18 15:40:27 +08:00
"cutego/modules/core/api/v1/request"
"cutego/modules/core/dao"
"cutego/modules/core/entity"
2022-03-01 13:50:13 +08:00
)
type CronJobService struct {
2022-03-13 16:02:24 +08:00
cronJobDao dao.CronJobDao
2022-03-01 13:50:13 +08:00
}
// FindPage 分页查询数据
func (s CronJobService) FindPage(query request.CronJobQuery) ([]entity.SysCronJob, int64) {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.SelectPage(query)
2022-03-01 13:50:13 +08:00
}
// Save 添加数据
func (s CronJobService) Save(config entity.SysCronJob) int64 {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.Insert(config)
2022-03-01 13:50:13 +08:00
}
// GetInfo 查询数据
func (s CronJobService) GetInfo(id int64) *entity.SysCronJob {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.SelectById(id)
2022-03-01 13:50:13 +08:00
}
2023-01-18 14:53:01 +08:00
// GetInfoByAlias 查询数据
2022-03-01 13:50:13 +08:00
func (s CronJobService) GetInfoByAlias(funcAlias string) *entity.SysCronJob {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.SelectByFuncAlias(funcAlias)
2022-03-01 13:50:13 +08:00
}
// Edit 修改数据
func (s CronJobService) Edit(config entity.SysCronJob) int64 {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.Update(config)
2022-03-01 13:50:13 +08:00
}
// Remove 批量删除
func (s CronJobService) Remove(list []int64) bool {
2022-03-13 16:02:24 +08:00
return s.cronJobDao.Delete(list)
2022-03-01 13:50:13 +08:00
}
2023-01-18 14:53:01 +08:00
// FindAll 查找所有
func (s CronJobService) FindAll() ([]entity.SysCronJob, int) {
return s.cronJobDao.SelectAll()
}