type DeviceArea struct {
Id string `json:"id" xorm:"pk"`
Name string `json:"name"`
Desc string `json:"desc,omitempty"`
Created time.Time `json:"created" xorm:"created"`
}
type DeviceEx struct {
Device `xorm:"extends"`
Product string `json:"product,omitempty"`
Type string `json:"type,omitempty"`
Area string `json:"area,omitempty"`
Group string `json:"group,omitempty"`
}
type DeviceType struct {
Id string `json:"id" xorm:"pk"`
Name string `json:"name"`
Desc string `json:"desc,omitempty"`
Created time.Time `json:"created,omitempty" xorm:"created"`
}