// ================================================================================= // This file is auto-generated by the GoFrame CLI tool. You may modify it as needed. // ================================================================================= package dao import ( "epic/internal/dao/internal" ) // systemOauth2ClientDao is the data access object for the table system_oauth2_client. // You can define custom methods on it to extend its functionality as needed. type systemOauth2ClientDao struct { *internal.SystemOauth2ClientDao } var ( // SystemOauth2Client is a globally accessible object for table system_oauth2_client operations. SystemOauth2Client = systemOauth2ClientDao{internal.NewSystemOauth2ClientDao()} ) // Add your custom methods and functionality below.