Commit 0cb56211 authored by 鹿朋's avatar 鹿朋

订单状态添加映射关系

parent 605b4a20
...@@ -82,6 +82,10 @@ public class OrderUtil { ...@@ -82,6 +82,10 @@ public class OrderUtil {
return new Tuple(kaNoticeType, "已关单"); return new Tuple(kaNoticeType, "已关单");
case "CANCEL_AFTER_LOAN" : case "CANCEL_AFTER_LOAN" :
return new Tuple(kaNoticeType, "存管提现超时或贷后关单"); return new Tuple(kaNoticeType, "存管提现超时或贷后关单");
case "REPAYMENT_RESULT":
return new Tuple<>(kaNoticeType, "还款结果通知");
case "QUOTA_EXPIRED":
return new Tuple<>(kaNoticeType, "额度失效");
default: default:
return new Tuple(kaNoticeType, "未知状态"); return new Tuple(kaNoticeType, "未知状态");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment