sys_job.go 881 B

1234567891011121314151617181920212223242526272829
  1. // ==========================================================================
  2. // GFast自动生成dao操作代码。
  3. // 生成日期:2023-01-12 17:43:50
  4. // 生成路径: internal/app/system/dao/sys_job.go
  5. // 生成人:gfast
  6. // desc:定时任务
  7. // company:云南奇讯科技有限公司
  8. // ==========================================================================
  9. package dao
  10. import (
  11. "github.com/tiger1103/gfast/v3/internal/app/system/dao/internal"
  12. )
  13. // sysJobDao is the manager for logic model data accessing and custom defined data operations functions management.
  14. // You can define custom methods on it to extend its functionality as you wish.
  15. type sysJobDao struct {
  16. *internal.SysJobDao
  17. }
  18. var (
  19. // SysJob is globally public accessible object for table tools_gen_table operations.
  20. SysJob = sysJobDao{
  21. internal.NewSysJobDao(),
  22. }
  23. )
  24. // Fill with you ideas below.