Merge branch 'main' of gitea.bywaystudios.com:wuminzhe/docs

This commit is contained in:
zhengxianxin 2026-03-23 17:36:09 +08:00
commit 2b99faad5d
4 changed files with 12 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -3002,6 +3002,18 @@ message ResActivityCfgReload{
string Msg = 2;
}
message ReqOrderShipping{
string OrderSn = 1; //
int32 Status = 2; // 1: 2:
string ChannelOrderSn = 3; //
}
message ResOrderShipping{
int32 Code = 1;
string Msg = 2;
}
service Backend {
rpc ReloadActivity(ReqActivityCfgReload) returns (ResActivityCfgReload);
rpc OrderShipping(ReqOrderShipping) returns (ResOrderShipping);
}