Files
arenax-server/internal/model/do/store_netfee_area_level.go
2025-06-24 19:53:39 +08:00

27 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// StoreNetfeeAreaLevel is the golang structure of table store_netfee_area_level for DAO operations like Where/Data.
type StoreNetfeeAreaLevel struct {
g.Meta `orm:"table:store_netfee_area_level, do:true"`
Id interface{} // 主键ID
StoreId interface{} // 门店ID
RewardId interface{} // 奖励IDrewards表主键
AreaId interface{} // 区域ID外部系统
AreaName interface{} // 区域名称
MemberLevelId interface{} // 会员等级ID外部系统
MemberLevelName interface{} // 会员等级名称
PriceData interface{} // 7x24价格矩阵
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
DeletedAt *gtime.Time // 删除时间
}