生成奖励相关代码,实现新增门店奖励
This commit is contained in:
18
internal/model/do/store_rewards.go
Normal file
18
internal/model/do/store_rewards.go
Normal file
@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// StoreRewards is the golang structure of table store_rewards for DAO operations like Where/Data.
|
||||
type StoreRewards struct {
|
||||
g.Meta `orm:"table:store_rewards, do:true"`
|
||||
StoreId interface{} // 门店ID
|
||||
RewardId interface{} // 奖励ID
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
}
|
||||
Reference in New Issue
Block a user