gem.go 295 B

123456789101112131415
  1. package forms
  2. import "gadmin/internal/gorm/model"
  3. type StatRow struct {
  4. Index int64 `json:"index"`
  5. Name string `json:"name"`
  6. Level int64 `json:"level"`
  7. Count int64 `json:"count"`
  8. Ratio float64 `json:"ratio"`
  9. }
  10. type PartStatRow struct {
  11. model.GemStat
  12. Name string `json:"name"`
  13. }