package devicestatistics type DeviceStatistics struct { TemplateTypeId int `xorm:"INT(11)"` DeviceName string `xorm:"VARCHAR(50)"` //设备名称 DeviceQty int `xorm:"INT(11)"` //客户编码 WaitMonth int `xorm:"INT(11)"` // 本月待检 FinishMonth int `xorm:"INT(11)"` //本月检测 WaitYear int `xorm:"INT(11)"` // 本年待检 FinishYear int `xorm:"INT(11)"` //全年检测 PassRate float64 // 合格率 }