risk.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package model
  2. //风险常量
  3. const (
  4. //ServerOutage 服务不可用
  5. ServerOutage = 0
  6. //ServerNormal 服务正常
  7. ServerNormal = 1
  8. //RankNormal 正常
  9. RankNormal = 0
  10. //RankAbnormal 不正常
  11. RankAbnormal = 1
  12. //RankDoubt 可疑
  13. RankDoubt = 2
  14. //MethodPass 通过
  15. MethodPass = 0
  16. //MethodBan 禁止
  17. MethodBan = 1
  18. //MethodGeetest 极验
  19. MethodGeetest = 2
  20. //MethodQuestion 答题
  21. MethodQuestion = 3
  22. //VoucherTypePull 凭证拉起
  23. VoucherTypePull = 1
  24. //VoucherTypeCheck 凭证验证
  25. VoucherTypeCheck = 2
  26. CheckPass = "验证通过"
  27. CheckSaleErr = "未到售卖时间"
  28. CheckMidEnough = "mid下单次数达到上限"
  29. CheckIPEnough = "IP下单次数达到上限"
  30. CheckIPChange = "用户网络环境变更"
  31. RiskLevelSuperHigh = 1
  32. RiskLevelHigh = 2
  33. RiskLevelMiddle = 3
  34. RiskLevelLight = 4
  35. RiskLevelNormal = 5
  36. )
  37. // DeviceInfo 设备信息
  38. type DeviceInfo struct {
  39. UA string `json:"ua"`
  40. Info string `json:"info"`
  41. Type string `json:"type"`
  42. Platform string `json:"platform"`
  43. Build string `json:"build"`
  44. }
  45. // ItemInfo 商品
  46. type ItemInfo struct {
  47. ID int64 `json:"id"`
  48. Name string `json:"name"`
  49. SaleTime int64 `json:"saleTime"`
  50. Count int64 `json:"count"`
  51. Money int64 `json:"money"`
  52. }
  53. // BuyerInfo 购买人
  54. type BuyerInfo struct {
  55. ID int64 `json:"id"`
  56. Name string `json:"name"`
  57. PersonalID string `json:"personalId"`
  58. IDCardFront string `json:"idCardFront"`
  59. IDCardBack string `json:"idCardBack"`
  60. }
  61. // AddrInfo 收货地址
  62. type AddrInfo struct {
  63. ID int64 `json:"id"`
  64. Name string `json:"name"`
  65. Phone string `json:"phone"`
  66. ProvID int64 `json:"provId"`
  67. Prov string `json:"prov"`
  68. CityID int64 `json:"cityId"`
  69. City string `json:"city"`
  70. AreaID int64 `json:"areaId"`
  71. Area string `json:"area"`
  72. Addr string `json:"addr"`
  73. }
  74. // ShieldData .
  75. type ShieldData struct {
  76. CustomerID int64 `json:"customerId"`
  77. UID string `json:"uid"`
  78. TraceID string `json:"traceId"`
  79. Timestamp int64 `json:"timestamp"`
  80. UserClientIp string `json:"userClientIp"`
  81. DeviceID string `json:"deviceId"`
  82. SourceIP string `json:"sourceIp"`
  83. InterfaceName string `json:"interfaceName"`
  84. PayChannel string `json:"payChannel"`
  85. ReqData *ReqData `json:"reqData"`
  86. ExtShield *ExtShield `json:"extShield"`
  87. }
  88. // ReqData 业务方信息
  89. type ReqData struct {
  90. ItemID []int64 `json:"itemId"`
  91. AddrID int64 `json:"addrId"`
  92. BuyerID int64 `json:"buyerId"`
  93. }
  94. // ExtShield .
  95. type ExtShield struct {
  96. OrderID int64 `json:"orderId"`
  97. RiskLevel int64 `json:"riskLevel"`
  98. ShieldResult int64 `json:"shieldResult"`
  99. ShieldMsg string `json:"shieldMsg"`
  100. Source string `json:"source"`
  101. }
  102. // ShieldIPList .
  103. type ShieldIPList struct {
  104. IP string `json:"ip"`
  105. Num string `json:"num"`
  106. }