mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
22 lines
493 B
Go
22 lines
493 B
Go
|
|
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"`
|
||
|
|
}
|