// ============================================================================ // 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" ) // platScheduleDao 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 platScheduleDao struct { internal.PlatScheduleDao } var ( // PlatSchedule is globally public accessible object for table plat_schedule operations. PlatSchedule = platScheduleDao{ internal.PlatSchedule, } ) type PlatScheduleDao struct { internal.PlatScheduleDao } func NewPlatScheduleDao(tenant string) *PlatScheduleDao { dao := internal.NewPlatScheduleDao(tenant) return &PlatScheduleDao{ dao, } } // Fill with you ideas below.