You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
495 B
14 lines
495 B
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"`
|
|
}
|
|
|