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) {}
}
@ -153,4 +156,15 @@ message OrderStatusTransitionReq {
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
}