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