sys_config.go 760 B

1234567891011121314151617181920212223242526
  1. // =================================================================================
  2. // This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
  3. // =================================================================================
  4. package dao
  5. import (
  6. "gfast/app/common/dao/internal"
  7. )
  8. // sysConfigDao is the manager for logic model data accessing and custom defined data operations functions management.
  9. // You can define custom methods on it to extend its functionality as you wish.
  10. type sysConfigDao struct {
  11. *internal.SysConfigDao
  12. }
  13. var (
  14. // SysConfig is globally public accessible object for table sys_config operations.
  15. SysConfig sysConfigDao
  16. )
  17. func init() {
  18. SysConfig = sysConfigDao{
  19. internal.NewSysConfigDao(),
  20. }
  21. }