i18n翻译

This commit is contained in:
hu xiaotong
2025-07-14 11:32:08 +08:00
parent 4ac2072fce
commit 22b6b3c93b
4 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"epic/internal/dao/internal"
)
// epicI18NMappingsDao is the data access object for the table epic_i18n_mappings.
// You can define custom methods on it to extend its functionality as needed.
type epicI18NMappingsDao struct {
*internal.EpicI18NMappingsDao
}
var (
// EpicI18NMappings is a globally accessible object for table epic_i18n_mappings operations.
EpicI18NMappings = epicI18NMappingsDao{internal.NewEpicI18NMappingsDao()}
)
// Add your custom methods and functionality below.