package models
type FPGAListResponse struct {
FPGAList []FPGAResponse `json:"FPGAList"`
}
type FPGAResponse struct {
Bdf string `json:"BDF"`
ProductName string `json:"productName"`
Vendor string `json:"vendor"`
NUMANode string `json:"NUMANode"`
Speed string `json:"speed"`
Width string `json:"width"`
Driver string `json:"driver"`
Version string `json:"version"`
AntSpeed string `json:"antSpeed"`
CellType string `json:"cellType"`
AntInfo string `json:"antInfo"`
}
-
lujianqiang authoredf9adc9ec