| 1234567891011121314 |
- package services
- import (
- "app/commons/model/entity"
- "gorm.io/gorm"
- )
- func (s *CommonService) LastSysJob(db *gorm.DB) (*entity.SysJob, error) {
- return GetLast[entity.SysJob](db)
- }
- func (s *CommonService) LastStakePeriodJob(db *gorm.DB) (*entity.StakePeriodJob, error) {
- return GetLast[entity.StakePeriodJob](db)
- }
|