group_user_bind.go 977 B

123456789101112131415161718192021222324252627282930313233343536
  1. // ============================================================================
  2. // This is auto-generated by gf cli tool only once. Fill this file as you wish.
  3. // ============================================================================
  4. package user
  5. import (
  6. internal2 "lims_adapter/dao/user/internal"
  7. )
  8. // groupUserBindDao is the manager for logic model data accessing
  9. // and custom defined data operations functions management. You can define
  10. // methods on it to extend its functionality as you wish.
  11. type groupUserBindDao struct {
  12. internal2.GroupUserBindDao
  13. }
  14. var (
  15. // GroupUserBind is globally public accessible object for table group_user_bind operations.
  16. GroupUserBind = groupUserBindDao{
  17. internal2.GroupUserBind,
  18. }
  19. )
  20. type GroupUserBindDao struct {
  21. internal2.GroupUserBindDao
  22. }
  23. func NewGroupUserBindDao(tenant string) *GroupUserBindDao {
  24. dao := internal2.NewGroupUserBindDao(tenant)
  25. return &GroupUserBindDao{
  26. dao,
  27. }
  28. }
  29. // Fill with you ideas below.