新增根据网关账号获取门店信息
This commit is contained in:
@ -116,3 +116,11 @@ type StoreDetailIn struct {
|
||||
type StoreDetailOut struct {
|
||||
Id int64 `json:"id"`
|
||||
}
|
||||
|
||||
type StoreByNetbarAccountIn struct {
|
||||
NetbarAccount string `json:"netbarAccount"`
|
||||
}
|
||||
|
||||
type StoreByNetbarAccountOut struct {
|
||||
Store interface{} `json:"store"`
|
||||
}
|
||||
|
||||
@ -22,6 +22,7 @@ type UserTask struct {
|
||||
User User `json:"user,omitempty" orm:"with:id=user_id"`
|
||||
Game Game `json:"game,omitempty" orm:"with:game_id=game_id"`
|
||||
// Store Store `json:"store" orm:"with:id=store_id"`
|
||||
UserTimes int64 `json:"userTimes" orm:"user_times" description:"用户完成次数"` // 用户完成次数
|
||||
}
|
||||
|
||||
type TaskReward struct {
|
||||
|
||||
Reference in New Issue
Block a user