Browse Source

..

master
robin 7 years ago
parent
commit
b815586da1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      B3QingDaoWanFu/Rpc/TrustPayRpc.cs

+ 2
- 2
B3QingDaoWanFu/Rpc/TrustPayRpc.cs View File

@ -48,7 +48,7 @@ namespace BWP.B3QingDaoWanFu.Rpc {
return GetTokenFromUrl(pay.ABCPay_PaymentURL);
}
if (pay.PayState == .)
return "付款单已付款!";
throw new Exception("付款单已付款!");
throw new Exception(string.Format("不支持的付款状态{0}", pay.PayState.Name));
}
@ -78,7 +78,7 @@ namespace BWP.B3QingDaoWanFu.Rpc {
}
[Rpc]
public static TrustPay[] QueryOrder(RpcQueryObj queryObj) {
public static TrustPay[] QueryTrustPay(RpcQueryObj queryObj) {
var query = new DQueryDom(new JoinAlias(typeof(TrustPay)));
query.Where.Conditions.Add(DQCondition.EQ("CreateUser_ID", BLContext.User.ID));


Loading…
Cancel
Save