model.go 493 B

123456789101112131415161718192021
  1. package model
  2. const (
  3. // CheckJobStatusOk 已完成
  4. CheckJobStatusOk = 1
  5. // CheckJobStatusErr 失败
  6. CheckJobStatusErr = 2
  7. // CheckJobStatusDoing 进行中
  8. CheckJobStatusDoing = 3
  9. // CheckJobStatusPending 等待执行
  10. CheckJobStatusPending = 4
  11. )
  12. // DpCheckJobResult .
  13. type DpCheckJobResult struct {
  14. Code int `json:"code"`
  15. Msg string `json:"msg"`
  16. StatusID int `json:"statusId"`
  17. StatusMsg string `json:"statusMsg"`
  18. Files []string `json:"hdfsPath"`
  19. }