修改奖励类型

This commit is contained in:
2025-06-24 19:53:39 +08:00
parent e28c44ecbb
commit 1c0b9a2d93
42 changed files with 666 additions and 1060 deletions

View File

@ -0,0 +1,27 @@
// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"server/internal/dao/internal"
)
// internalStoreNetfeeAreaLevelDao is an internal type for wrapping the internal DAO implementation.
type internalStoreNetfeeAreaLevelDao = *internal.StoreNetfeeAreaLevelDao
// storeNetfeeAreaLevelDao is the data access object for the table store_netfee_area_level.
// You can define custom methods on it to extend its functionality as needed.
type storeNetfeeAreaLevelDao struct {
internalStoreNetfeeAreaLevelDao
}
var (
// StoreNetfeeAreaLevel is a globally accessible object for table store_netfee_area_level operations.
StoreNetfeeAreaLevel = storeNetfeeAreaLevelDao{
internal.NewStoreNetfeeAreaLevelDao(),
}
)
// Add your custom methods and functionality below.