parent
e9c1de9664
commit
5b2746f389
@ -0,0 +1,16 @@
|
|||||||
|
package m20220625184300
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gorm.io/gorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Setting struct {
|
||||||
|
//GORM attributes, see: http://gorm.io/docs/conventions.html
|
||||||
|
gorm.Model
|
||||||
|
|
||||||
|
SettingKeyName string `json:"setting_key_name"`
|
||||||
|
SettingDataType string `json:"setting_data_type"`
|
||||||
|
|
||||||
|
SettingValueNumeric int64 `json:"setting_value_numeric"`
|
||||||
|
SettingValueString string `json:"setting_value_string"`
|
||||||
|
}
|
@ -1,5 +1,16 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
// Temperature Format
|
import (
|
||||||
// Date Format
|
"gorm.io/gorm"
|
||||||
// Device History window
|
)
|
||||||
|
|
||||||
|
type Setting struct {
|
||||||
|
//GORM attributes, see: http://gorm.io/docs/conventions.html
|
||||||
|
gorm.Model
|
||||||
|
|
||||||
|
SettingKeyName string `json:"setting_key_name"`
|
||||||
|
SettingDataType string `json:"setting_data_type"`
|
||||||
|
|
||||||
|
SettingValueNumeric int64 `json:"setting_value_numeric"`
|
||||||
|
SettingValueString string `json:"setting_value_string"`
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue