This commit is contained in:
yangduo 2024-07-16 15:46:14 +08:00
parent b488f0e28d
commit a0d4a21a67
2 changed files with 26 additions and 26 deletions

View File

@ -25,26 +25,26 @@ type MallItem struct {
Unit_price int `gorm:"comment:单价" 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"))
} }

View File

@ -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"))
} }