This commit is contained in:
huangsimin@fusen.cn
2024-01-09 18:39:52 +08:00
parent cc1c14b86d
commit 0beabb590f

View File

@@ -36,6 +36,9 @@ service notify {
// 订单 状态流转
rpc OrderStatusTransition( OrderStatusTransitionReq) returns (OrderStatusTransitionResp) {}
// 订单 状态流转
rpc OrderPayArrears( OrderPayArrearsReq) returns (OrderPayArrearsResp) {}
}
@@ -154,3 +157,14 @@ message OrderStatusTransitionResp {
int64 code = 1; // 0成功 其他异常
string notify_id = 2; // 通知id
}
message OrderPayArrearsReq {
EmailNotifyBasic basic_email = 1;
string pay_arrears_link = 2; // 检查状态
}
message OrderPayArrearsResp {
int64 code = 1; // 0成功 其他异常
string notify_id = 2; // 通知id
}