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.
17 lines
477 B
17 lines
477 B
3 years ago
|
package models
|
||
|
|
||
3 years ago
|
type Record struct {
|
||
3 years ago
|
KeyName string `json:"keyName"`
|
||
|
Path string `json:"path"`
|
||
3 years ago
|
Size string `json:"size"`
|
||
3 years ago
|
Line string `json:"line"`
|
||
|
Machine string `json:"machine"`
|
||
|
CreateTime string `json:"createTime"`
|
||
|
UploadTime string `json:"uploadTime"`
|
||
|
SN string `json:"sn"`
|
||
|
Side string `json:"side"`
|
||
|
Result string `json:"result"`
|
||
|
StationID string `json:"stationID"`
|
||
|
ProjectName string `json:"projectName"`
|
||
|
}
|