package models type DhStandalone struct { BoxId string `gorm:"column:boxId"` StandaloneId int `gorm:"column:standaloneId"` DhSuAirTemp interface{} `gorm:"column:dhSuAirTemp"` // 送风温度 DhSuAirHumi interface{} `gorm:"column:dhSuAirHumi"` // 送风湿度 DhSuAirDewP interface{} `gorm:"column:dhSuAirDewP"` // 送风露点 DhFrAirTemp interface{} `gorm:"column:dhFrAirTemp"` // 新风温度 DhFrAirHumi interface{} `gorm:"column:dhFrAirHumi"` // 新风湿度 DhFrAirDewP interface{} `gorm:"column:dhFrAirDewP"` // 新风露点 DhReAirTemp interface{} `gorm:"column:dhReAirTemp"` // 回风温度 DhReAirHumi interface{} `gorm:"column:dhReAirHumi"` // 回风湿度 DhReAirDewP interface{} `gorm:"column:dhReAirDewP"` // 回风露点 DhSuAirDhRateFdbk interface{} `gorm:"column:dhSuAirDhRateFdbk"` // 温控装置开度反馈 DhSuAirRhSwitchFdbk interface{} `gorm:"column:dhSuAirRhSwitchFdbk"` // 再热装置状态反馈 DhSuAirAhSwitchFdbk interface{} `gorm:"column:dhSuAirAhSwitchFdbk"` // 加湿装置状态反馈 DhSuAirFanSp interface{} `gorm:"column:dhSuAirFanSp"` // 送风风速 DhExAirFanSp interface{} `gorm:"column:dhExAirFanSp"` // 排风风速 DhSuAirTarTemp interface{} `gorm:"column:dhSuAirTarTemp"` // 送风设定温度 DhSuAirTarDewP interface{} `gorm:"column:dhSuAirTarDewP"` // 送风设定露点 DhReAirTarTemp interface{} `gorm:"column:dhReAirTarTemp"` // 回风设定温度 DhReAirTarDewP interface{} `gorm:"column:dhReAirTarDewP"` // 回风设定露点 } func (DhStandalone) TableName() string { return "btk_runstat_dhstandalone" }