users.go 679 B

12345678910111213141516171819202122
  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. "proxima/app/user/internal/dao/internal"
  7. )
  8. // usersDao is the data access object for the table users.
  9. // You can define custom methods on it to extend its functionality as needed.
  10. type usersDao struct {
  11. *internal.UsersDao
  12. }
  13. var (
  14. // Users is a globally accessible object for table users operations.
  15. Users = usersDao{internal.NewUsersDao()}
  16. )
  17. // Add your custom methods and functionality below.