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