Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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"`
}