garbageDao.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. package dao
  2. // GarbageData 垃圾桶数据
  3. type GarbageData struct {
  4. ID int `gorm:"primary_key" json:"id"` //编号
  5. DeviceId string `gorm:"type:varchar(20)" json:"deviceId"` //设备名称
  6. StartTime string `gorm:"type:varchar(15)" json:"startTime"` //工作时段开始时间
  7. EndTime string `gorm:"type:varchar(15)" json:"endTime"` //工作时段结束时间
  8. PostTime string `gorm:"type:varchar(30)" json:"postTime"` //上传时间
  9. BatteryVoltage float32 `gorm:"type:float(5, 1)" json:"batteryVoltage"` //电池电压
  10. BatteryPercentage float32 `gorm:"type:float(5, 1)" json:"batteryPercentage"` //电池电量
  11. SensorCount int `gorm:"type:int" json:"sensorCount"` //传感器通道数量
  12. SensorOne float32 `gorm:"type:float(5, 1)" json:"sensorOne"` //通道一原始数值
  13. SensorTwo float32 `gorm:"type:float(5, 1)" json:"sensorTwo"` //通道二原始数值
  14. SensorOnePercentage float32 `gorm:"type:float(5, 1)" json:"sensorOnePercentage"` //通道一垃圾量百分比
  15. SensorTwoPercentage float32 `gorm:"type:float(5, 1)" json:"sensorTwoPercentage"` //通道二垃圾量百分比
  16. WorkTime string `gorm:"type:varchar(50)" json:"workTime"` //工作时间段
  17. }
  18. func (GarbageData) TableName() string {
  19. return "data_garbage"
  20. }
  21. func (c *GarbageData) Save() error {
  22. return Db.Debug().Model(&c).Create(&c).Error
  23. }
  24. func (c *GarbageData) BatchSave(data []GarbageData) error {
  25. return Db.Debug().Model(&c).Create(&data).Error
  26. }
  27. func (c *GarbageData) Get() error {
  28. return Db.Debug().Model(&c).Where("device_id = ?", c.DeviceId).Find(&c).Error
  29. }