admin_user.go 851 B

123456789101112131415161718192021222324252627
  1. // =================================================================================
  2. // This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
  3. // =================================================================================
  4. package dao
  5. import (
  6. "demo/internal/dao/internal"
  7. )
  8. // internalAdminUserDao is an internal type for wrapping the internal DAO implementation.
  9. type internalAdminUserDao = *internal.AdminUserDao
  10. // adminUserDao is the data access object for the table admin_user.
  11. // You can define custom methods on it to extend its functionality as needed.
  12. type adminUserDao struct {
  13. internalAdminUserDao
  14. }
  15. var (
  16. // AdminUser is a globally accessible object for table admin_user operations.
  17. AdminUser = adminUserDao{
  18. internal.NewAdminUserDao(),
  19. }
  20. )
  21. // Add your custom methods and functionality below.