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