1
This commit is contained in:
commit
10df8e70b8
@ -15,13 +15,13 @@ type GoldBullion struct {
|
|||||||
Gold int `gorm:"comment:金币" json:"gold"`
|
Gold int `gorm:"comment:金币" json:"gold"`
|
||||||
Status int `gorm:"comment:状态 0:初始 1:已开" json:"status"`
|
Status int `gorm:"comment:状态 0:初始 1:已开" json:"status"`
|
||||||
Open_status int `gorm:"comment:1: 已发送 2:未发送 3:已领取" json:"open_status"`
|
Open_status int `gorm:"comment:1: 已发送 2:未发送 3:已领取" json:"open_status"`
|
||||||
Open_address string `gorm:"comment:1: open_address" json:"open_address"`
|
Open_address string `gorm:"comment:open_address" json:"open_address"`
|
||||||
Open_time int `gorm:"comment:open_time" json:"open_time"`
|
Open_time int `gorm:"comment:open_time" json:"open_time"`
|
||||||
Open_account_id string `gorm:"comment:open账号id(channel + '_' + gameid + '_' + openid)" json:"open_account_id"`
|
Open_account_id string `gorm:"comment:open账号id(channel + '_' + gameid + '_' + openid)" json:"open_account_id"`
|
||||||
Open_uniqid string `gorm:"comment:1: 开启的本次唯一id" json:"open_uniqid"`
|
Open_uniqid string `gorm:"comment:开启的本次唯一id" json:"open_uniqid"`
|
||||||
Returned int `gorm:"comment:是否已超时返还" json:"returned"`
|
Returned int `gorm:"comment:是否已超时返还" json:"returned"`
|
||||||
Return_time int `gorm:"comment:返还时间" json:"return_time"`
|
Return_time int `gorm:"comment:返还时间" json:"return_time"`
|
||||||
Activated int `gorm:"comment:是否已上连" json:"activated"`
|
Activated int `gorm:"comment:是否已上链" json:"activated"`
|
||||||
Activated_time int `gorm:"comment:上链时间" json:"activated_time"`
|
Activated_time int `gorm:"comment:上链时间" json:"activated_time"`
|
||||||
Createtime int `gorm:"comment:创建时间" json:"createtime"`
|
Createtime int `gorm:"comment:创建时间" json:"createtime"`
|
||||||
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
||||||
|
@ -22,29 +22,29 @@ type MallItem struct {
|
|||||||
Createtime int `gorm:"comment:创建时间" json:"createtime"`
|
Createtime int `gorm:"comment:创建时间" json:"createtime"`
|
||||||
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
||||||
Order1 int `gorm:"comment:品质排序" json:"order1"`
|
Order1 int `gorm:"comment:品质排序" json:"order1"`
|
||||||
Unit_price int `gorm:"comment:unit_price" json:"unit_price"`
|
Unit_price int `gorm:"comment:单价" json:"unit_price"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gb *MallItem) TableName() string {
|
func (mi *MallItem) TableName() string {
|
||||||
return "t_ingame_mall"
|
return "t_ingame_mall"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gb *MallItem) LoadFromDs(ds *f5.DataSet) {
|
func (mi *MallItem) LoadFromDs(ds *f5.DataSet) {
|
||||||
gb.Idx = q5.ToInt64(ds.GetByName("idx"))
|
mi.Idx = q5.ToInt64(ds.GetByName("idx"))
|
||||||
gb.Order_id = ds.GetByName("order_id")
|
mi.Order_id = ds.GetByName("order_id")
|
||||||
gb.Order_type = q5.ToInt(ds.GetByName("order_type"))
|
mi.Order_type = q5.ToInt(ds.GetByName("order_type"))
|
||||||
gb.Seller = ds.GetByName("seller")
|
mi.Seller = ds.GetByName("seller")
|
||||||
gb.Seller_address = ds.GetByName("seller_address")
|
mi.Seller_address = ds.GetByName("seller_address")
|
||||||
gb.Goods_uniid = ds.GetByName("goods_uniid")
|
mi.Goods_uniid = ds.GetByName("goods_uniid")
|
||||||
gb.Item_id = q5.ToInt(ds.GetByName("item_id"))
|
mi.Item_id = q5.ToInt(ds.GetByName("item_id"))
|
||||||
gb.Item_num = q5.ToInt64(ds.GetByName("item_num"))
|
mi.Item_num = q5.ToInt64(ds.GetByName("item_num"))
|
||||||
gb.Price = q5.ToInt64(ds.GetByName("price"))
|
mi.Price = q5.ToInt64(ds.GetByName("price"))
|
||||||
gb.Status = q5.ToInt(ds.GetByName("status"))
|
mi.Status = q5.ToInt(ds.GetByName("status"))
|
||||||
gb.Buyer = ds.GetByName("buyer")
|
mi.Buyer = ds.GetByName("buyer")
|
||||||
gb.Buy_ok_time = q5.ToInt(ds.GetByName("buy_ok_time"))
|
mi.Buy_ok_time = q5.ToInt(ds.GetByName("buy_ok_time"))
|
||||||
gb.Last_modify_price_time = q5.ToInt(ds.GetByName("last_modify_price_time"))
|
mi.Last_modify_price_time = q5.ToInt(ds.GetByName("last_modify_price_time"))
|
||||||
gb.Createtime = q5.ToInt(ds.GetByName("createtime"))
|
mi.Createtime = q5.ToInt(ds.GetByName("createtime"))
|
||||||
gb.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
|
mi.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
|
||||||
gb.Order1 = q5.ToInt(ds.GetByName("order1"))
|
mi.Order1 = q5.ToInt(ds.GetByName("order1"))
|
||||||
gb.Unit_price = q5.ToInt(ds.GetByName("unit_price"))
|
mi.Unit_price = q5.ToInt(ds.GetByName("unit_price"))
|
||||||
}
|
}
|
||||||
|
@ -13,14 +13,14 @@ type TicketConsume struct {
|
|||||||
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gb *TicketConsume) TableName() string {
|
func (tc *TicketConsume) TableName() string {
|
||||||
return "t_ticket_consume_record"
|
return "t_ticket_consume_record"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gb *TicketConsume) LoadFromDs(ds *f5.DataSet) {
|
func (tc *TicketConsume) LoadFromDs(ds *f5.DataSet) {
|
||||||
gb.Idx = q5.ToInt64(ds.GetByName("idx"))
|
tc.Idx = q5.ToInt64(ds.GetByName("idx"))
|
||||||
gb.Match_room_uuid = ds.GetByName("match_room_uuid")
|
tc.Match_room_uuid = ds.GetByName("match_room_uuid")
|
||||||
gb.Account_id = ds.GetByName("account_id")
|
tc.Account_id = ds.GetByName("account_id")
|
||||||
gb.Createtime = q5.ToInt(ds.GetByName("createtime"))
|
tc.Createtime = q5.ToInt(ds.GetByName("createtime"))
|
||||||
gb.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
|
tc.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user