admin_request.go 887 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. // internalAdminRequestDao is an internal type for wrapping the internal DAO implementation.
  9. type internalAdminRequestDao = *internal.AdminRequestDao
  10. // adminRequestDao is the data access object for the table admin_request.
  11. // You can define custom methods on it to extend its functionality as needed.
  12. type adminRequestDao struct {
  13. internalAdminRequestDao
  14. }
  15. var (
  16. // AdminRequest is a globally accessible object for table admin_request operations.
  17. AdminRequest = adminRequestDao{
  18. internal.NewAdminRequestDao(),
  19. }
  20. )
  21. // Add your custom methods and functionality below.