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