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.
18 lines
466 B
18 lines
466 B
package model |
|
|
|
import ( |
|
xtime "go-common/library/time" |
|
) |
|
|
|
// TaskLog record the uploaded task details |
|
type TaskLog struct { |
|
ID int64 `json:"id"` |
|
TaskID int64 `json:"task_id"` |
|
MID int64 `json:"mid"` |
|
Build string `json:"build"` |
|
Platform int `json:"platform"` |
|
TaskState int `json:"task_state"` |
|
Reason string `json:"reason"` |
|
CTime xtime.Time `json:"ctime"` |
|
MTime xtime.Time `json:"mtime"` |
|
}
|
|
|