- package forms
- import "gadmin/internal/gorm/model"
- type StatRow struct {
- Index int64 `json:"index"`
- Name string `json:"name"`
- Level int64 `json:"level"`
- Count int64 `json:"count"`
- Ratio float64 `json:"ratio"`
- }
- type PartStatRow struct {
- model.GemStat
- Name string `json:"name"`
- }
|