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
394 B
14 lines
394 B
package SavoirTheme
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type OffLineGap struct {
|
|
StructId int `json:"struct_id" db:"struct_id"`
|
|
FactorId int `json:"factor_id" db:"factor_id"`
|
|
OfflineGap int `json:"offline_gap" db:"offline_gap"`
|
|
IsOpen bool `json:"is_open" db:"is_open"`
|
|
UpdateAt time.Time `json:"update_at" db:"update_at"`
|
|
StructName string `json:"name" db:"name"`
|
|
}
|
|
|