This commit is contained in:
aozhiwei 2024-07-16 17:29:14 +08:00
commit 10df8e70b8
3 changed files with 30 additions and 30 deletions

View File

@ -15,13 +15,13 @@ type GoldBullion struct {
Gold int `gorm:"comment:金币" json:"gold"`
Status int `gorm:"comment:状态 0:初始 1:已开" json:"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_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"`
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"`
Createtime int `gorm:"comment:创建时间" json:"createtime"`
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`

View File

@ -22,29 +22,29 @@ type MallItem struct {
Createtime int `gorm:"comment:创建时间" json:"createtime"`
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
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"
}
func (gb *MallItem) LoadFromDs(ds *f5.DataSet) {
gb.Idx = q5.ToInt64(ds.GetByName("idx"))
gb.Order_id = ds.GetByName("order_id")
gb.Order_type = q5.ToInt(ds.GetByName("order_type"))
gb.Seller = ds.GetByName("seller")
gb.Seller_address = ds.GetByName("seller_address")
gb.Goods_uniid = ds.GetByName("goods_uniid")
gb.Item_id = q5.ToInt(ds.GetByName("item_id"))
gb.Item_num = q5.ToInt64(ds.GetByName("item_num"))
gb.Price = q5.ToInt64(ds.GetByName("price"))
gb.Status = q5.ToInt(ds.GetByName("status"))
gb.Buyer = ds.GetByName("buyer")
gb.Buy_ok_time = q5.ToInt(ds.GetByName("buy_ok_time"))
gb.Last_modify_price_time = q5.ToInt(ds.GetByName("last_modify_price_time"))
gb.Createtime = q5.ToInt(ds.GetByName("createtime"))
gb.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
gb.Order1 = q5.ToInt(ds.GetByName("order1"))
gb.Unit_price = q5.ToInt(ds.GetByName("unit_price"))
func (mi *MallItem) LoadFromDs(ds *f5.DataSet) {
mi.Idx = q5.ToInt64(ds.GetByName("idx"))
mi.Order_id = ds.GetByName("order_id")
mi.Order_type = q5.ToInt(ds.GetByName("order_type"))
mi.Seller = ds.GetByName("seller")
mi.Seller_address = ds.GetByName("seller_address")
mi.Goods_uniid = ds.GetByName("goods_uniid")
mi.Item_id = q5.ToInt(ds.GetByName("item_id"))
mi.Item_num = q5.ToInt64(ds.GetByName("item_num"))
mi.Price = q5.ToInt64(ds.GetByName("price"))
mi.Status = q5.ToInt(ds.GetByName("status"))
mi.Buyer = ds.GetByName("buyer")
mi.Buy_ok_time = q5.ToInt(ds.GetByName("buy_ok_time"))
mi.Last_modify_price_time = q5.ToInt(ds.GetByName("last_modify_price_time"))
mi.Createtime = q5.ToInt(ds.GetByName("createtime"))
mi.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
mi.Order1 = q5.ToInt(ds.GetByName("order1"))
mi.Unit_price = q5.ToInt(ds.GetByName("unit_price"))
}

View File

@ -13,14 +13,14 @@ type TicketConsume struct {
Modifytime int `gorm:"comment:修改时间" json:"modifytime"`
}
func (gb *TicketConsume) TableName() string {
func (tc *TicketConsume) TableName() string {
return "t_ticket_consume_record"
}
func (gb *TicketConsume) LoadFromDs(ds *f5.DataSet) {
gb.Idx = q5.ToInt64(ds.GetByName("idx"))
gb.Match_room_uuid = ds.GetByName("match_room_uuid")
gb.Account_id = ds.GetByName("account_id")
gb.Createtime = q5.ToInt(ds.GetByName("createtime"))
gb.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
func (tc *TicketConsume) LoadFromDs(ds *f5.DataSet) {
tc.Idx = q5.ToInt64(ds.GetByName("idx"))
tc.Match_room_uuid = ds.GetByName("match_room_uuid")
tc.Account_id = ds.GetByName("account_id")
tc.Createtime = q5.ToInt(ds.GetByName("createtime"))
tc.Modifytime = q5.ToInt(ds.GetByName("modifytime"))
}