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.
21 lines
493 B
21 lines
493 B
package model |
|
|
|
const ( |
|
// CheckJobStatusOk 已完成 |
|
CheckJobStatusOk = 1 |
|
// CheckJobStatusErr 失败 |
|
CheckJobStatusErr = 2 |
|
// CheckJobStatusDoing 进行中 |
|
CheckJobStatusDoing = 3 |
|
// CheckJobStatusPending 等待执行 |
|
CheckJobStatusPending = 4 |
|
) |
|
|
|
// DpCheckJobResult . |
|
type DpCheckJobResult struct { |
|
Code int `json:"code"` |
|
Msg string `json:"msg"` |
|
StatusID int `json:"statusId"` |
|
StatusMsg string `json:"statusMsg"` |
|
Files []string `json:"hdfsPath"` |
|
}
|
|
|