3
2

devicestatistics.go 493 B

123456789101112
  1. package devicestatistics
  2. type DeviceStatistics struct {
  3. TemplateTypeId int `xorm:"INT(11)"`
  4. DeviceName string `xorm:"VARCHAR(50)"` //设备名称
  5. DeviceQty int `xorm:"INT(11)"` //客户编码
  6. WaitMonth int `xorm:"INT(11)"` // 本月待检
  7. FinishMonth int `xorm:"INT(11)"` //本月检测
  8. WaitYear int `xorm:"INT(11)"` // 本年待检
  9. FinishYear int `xorm:"INT(11)"` //全年检测
  10. PassRate float64 // 合格率
  11. }