// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package plat import ( "dashoo.cn/micro/app/dao/plat/internal" ) // platScheduleAttendeeDao 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 platScheduleAttendeeDao struct { internal.PlatScheduleAttendeeDao } var ( // PlatScheduleAttendee is globally public accessible object for table plat_schedule_attendee operations. PlatScheduleAttendee = platScheduleAttendeeDao{ internal.PlatScheduleAttendee, } ) type PlatScheduleAttendeeDao struct { internal.PlatScheduleAttendeeDao } func NewPlatScheduleAttendeeDao(tenant string) *PlatScheduleAttendeeDao { dao := internal.NewPlatScheduleAttendeeDao(tenant) return &PlatScheduleAttendeeDao{ dao, } } // Fill with you ideas below.