user.go 789 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. "cris/internal/dao/internal"
  7. )
  8. // internalUserDao is an internal type for wrapping the internal DAO implementation.
  9. type internalUserDao = *internal.UserDao
  10. // userDao is the data access object for the table user.
  11. // You can define custom methods on it to extend its functionality as needed.
  12. type userDao struct {
  13. internalUserDao
  14. }
  15. var (
  16. // User is a globally accessible object for table user operations.
  17. User = userDao{
  18. internal.NewUserDao(),
  19. }
  20. )
  21. // Add your custom methods and functionality below.