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