15 lines
381 B
Go
15 lines
381 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Model struct {
|
||
|
|
ID int `json:"id"`
|
||
|
|
BrandName string `json:"brandName"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
Form *string `json:"form,omitempty"`
|
||
|
|
Rig *string `json:"rig,omitempty"`
|
||
|
|
Source *string `json:"source,omitempty"`
|
||
|
|
EqKey *string `json:"eqKey,omitempty"`
|
||
|
|
CreateAt time.Time `json:"createAt"`
|
||
|
|
}
|