3 changed files with 22 additions and 10 deletions
@ -0,0 +1,14 @@ |
|||
package AlarmCombination |
|||
|
|||
import "time" |
|||
|
|||
type CombinationInfo struct { |
|||
Id int64 `json:"id" db:"id"` |
|||
Name string `json:"name" db:"name"` |
|||
Description string `json:"description" db:"description"` |
|||
Config any `json:"config" db:"config"` |
|||
Enable bool `json:"enable" db:"enable"` |
|||
StructId int32 `json:"struct_id" db:"struct_id"` |
|||
OrgId int32 `json:"org_id" db:"org_id"` |
|||
UpdateTime time.Time `json:"update_time" db:"update_time"` |
|||
} |
Loading…
Reference in new issue