| 123456789101112131415161718 |
- package entity
- type Group struct {
- Name string `json:"Name"`
- Amount int `json:"Amount"`
- }
- type ArkItemInfo struct {
- Id string `xorm:"id" json:"id"`
- Name string `xorm:"name" json:"name"`
- Label string `xorm:"label" json:"label"`
- ImgUrl string `xorm:"img_url" json:"imgUrl"`
- Category string `xorm:"category" json:"category"`
- StackSize int `xorm:"stack_size" json:"stackSize"`
- ItemId string `xorm:"item_id" json:"itemId"`
- ClassName string `xorm:"class_name" json:"className"`
- Blueprint string `xorm:"blueprint" json:"blueprint"`
- }
|