// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package dao import ( "lims_adapter/dao/access/internal" ) // userLockaccessDao 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 userLockaccessDao struct { internal.UserLockaccessDao } var ( // UserLockaccess is globally public accessible object for table user_lockaccess operations. UserLockaccess = userLockaccessDao{ internal.UserLockaccess, } ) type UserLockaccessDao struct { internal.UserLockaccessDao } func NewUserLockaccessDao(tenant string) *UserLockaccessDao { dao := internal.NewUserLockaccessDao(tenant) return &UserLockaccessDao{ dao, } } // Fill with you ideas below.