model.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package model
  2. // MCNSignState .
  3. type MCNSignState int8
  4. // const .
  5. const (
  6. // MCNSignStateNoApply 未申请
  7. MCNSignStateNoApply MCNSignState = 0
  8. // MCNSignStateOnReview 待审核
  9. MCNSignStateOnReview MCNSignState = 1
  10. // MCNSignStateOnReject 已驳回
  11. MCNSignStateOnReject MCNSignState = 2
  12. // MCNSignStateOnSign 已签约
  13. MCNSignStateOnSign MCNSignState = 10
  14. // MCNSignStateOnCooling 冷却中
  15. MCNSignStateOnCooling MCNSignState = 11
  16. // MCNSignStateOnExpire 已到期
  17. MCNSignStateOnExpire MCNSignState = 12
  18. // MCNSignStateOnBlock 封禁
  19. MCNSignStateOnBlock MCNSignState = 13
  20. // MCNSignStateOnClear 清退
  21. MCNSignStateOnClear MCNSignState = 14
  22. // MCNSignStateOnPreOpen 待开启
  23. MCNSignStateOnPreOpen MCNSignState = 15
  24. // MCNSignStateOnDelete 移除
  25. MCNSignStateOnDelete MCNSignState = 100
  26. )
  27. // MCNUPState .
  28. type MCNUPState int8
  29. // const .
  30. const (
  31. // MCNUPStateNoAuthorize 未授权
  32. MCNUPStateNoAuthorize MCNUPState = 0
  33. // MCNUPStateOnRefuse 已拒绝
  34. MCNUPStateOnRefuse MCNUPState = 1
  35. // MCNUPStateOnReview 审核中
  36. MCNUPStateOnReview MCNUPState = 2
  37. // MCNUPStateOnReject 已驳回
  38. MCNUPStateOnReject MCNUPState = 3
  39. // MCNUPStateOnSign 已签约
  40. MCNUPStateOnSign MCNUPState = 10
  41. // MCNUPStateOnCooling 已冻结
  42. MCNUPStateOnCooling MCNUPState = 11
  43. // MCNUPStateOnExpire 已到期
  44. MCNUPStateOnExpire MCNUPState = 12
  45. // MCNUPStateOnBlock 封禁
  46. MCNUPStateOnBlock MCNUPState = 13
  47. // MCNUPStateOnClear 已解约
  48. MCNUPStateOnClear MCNUPState = 14
  49. // MCNUPStateOnPreOpen 待开启
  50. MCNUPStateOnPreOpen MCNUPState = 15
  51. // MCNUPStateOnDelete 删除
  52. MCNUPStateOnDelete MCNUPState = 100
  53. )