Domain.go 571 B

123456789101112131415161718
  1. package entity
  2. type Group struct {
  3. Name string `json:"Name"`
  4. Amount int `json:"Amount"`
  5. }
  6. type ArkItemInfo struct {
  7. Id string `xorm:"id" json:"id"`
  8. Name string `xorm:"name" json:"name"`
  9. Label string `xorm:"label" json:"label"`
  10. ImgUrl string `xorm:"img_url" json:"imgUrl"`
  11. Category string `xorm:"category" json:"category"`
  12. StackSize int `xorm:"stack_size" json:"stackSize"`
  13. ItemId string `xorm:"item_id" json:"itemId"`
  14. ClassName string `xorm:"class_name" json:"className"`
  15. Blueprint string `xorm:"blueprint" json:"blueprint"`
  16. }