9 lines
164 B
Go
9 lines
164 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
type MobileOtaInstall struct {
|
|
Time *time.Time `json:"time,omitempty"`
|
|
CarUpdate int64 `json:"id" validate:"required"`
|
|
}
|