new_trend.go 1.8 KB

12345678910111213141516171819202122232425262728
  1. package models
  2. type DhStandalone struct {
  3. BoxId string `gorm:"column:boxId"`
  4. StandaloneId int `gorm:"column:standaloneId"`
  5. DhSuAirTemp interface{} `gorm:"column:dhSuAirTemp"` // 送风温度
  6. DhSuAirHumi interface{} `gorm:"column:dhSuAirHumi"` // 送风湿度
  7. DhSuAirDewP interface{} `gorm:"column:dhSuAirDewP"` // 送风露点
  8. DhFrAirTemp interface{} `gorm:"column:dhFrAirTemp"` // 新风温度
  9. DhFrAirHumi interface{} `gorm:"column:dhFrAirHumi"` // 新风湿度
  10. DhFrAirDewP interface{} `gorm:"column:dhFrAirDewP"` // 新风露点
  11. DhReAirTemp interface{} `gorm:"column:dhReAirTemp"` // 回风温度
  12. DhReAirHumi interface{} `gorm:"column:dhReAirHumi"` // 回风湿度
  13. DhReAirDewP interface{} `gorm:"column:dhReAirDewP"` // 回风露点
  14. DhSuAirDhRateFdbk interface{} `gorm:"column:dhSuAirDhRateFdbk"` // 温控装置开度反馈
  15. DhSuAirRhSwitchFdbk interface{} `gorm:"column:dhSuAirRhSwitchFdbk"` // 再热装置状态反馈
  16. DhSuAirAhSwitchFdbk interface{} `gorm:"column:dhSuAirAhSwitchFdbk"` // 加湿装置状态反馈
  17. DhSuAirFanSp interface{} `gorm:"column:dhSuAirFanSp"` // 送风风速
  18. DhExAirFanSp interface{} `gorm:"column:dhExAirFanSp"` // 排风风速
  19. DhSuAirTarTemp interface{} `gorm:"column:dhSuAirTarTemp"` // 送风设定温度
  20. DhSuAirTarDewP interface{} `gorm:"column:dhSuAirTarDewP"` // 送风设定露点
  21. DhReAirTarTemp interface{} `gorm:"column:dhReAirTarTemp"` // 回风设定温度
  22. DhReAirTarDewP interface{} `gorm:"column:dhReAirTarDewP"` // 回风设定露点
  23. }
  24. func (DhStandalone) TableName() string {
  25. return "btk_runstat_dhstandalone"
  26. }