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