| 123456789101112131415161718192021222324252627282930313233343536 |
- // ============================================================================
- // This is auto-generated by gf cli tool only once. Fill this file as you wish.
- // ============================================================================
- package user
- import (
- internal2 "lims_adapter/dao/user/internal"
- )
- // groupUserBindDao is the manager for logic model data accessing
- // and custom defined data operations functions management. You can define
- // methods on it to extend its functionality as you wish.
- type groupUserBindDao struct {
- internal2.GroupUserBindDao
- }
- var (
- // GroupUserBind is globally public accessible object for table group_user_bind operations.
- GroupUserBind = groupUserBindDao{
- internal2.GroupUserBind,
- }
- )
- type GroupUserBindDao struct {
- internal2.GroupUserBindDao
- }
- func NewGroupUserBindDao(tenant string) *GroupUserBindDao {
- dao := internal2.NewGroupUserBindDao(tenant)
- return &GroupUserBindDao{
- dao,
- }
- }
- // Fill with you ideas below.
|