From 07f919a9a028fa307487d43a22a2a98c5d0fbf38 Mon Sep 17 00:00:00 2001 From: yibo <361071264@qq.com> Date: Thu, 19 Oct 2017 21:12:36 +0800 Subject: [PATCH] . --- B3ClientService/Rpcs/BillRpc/WeightBillRpc.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/B3ClientService/Rpcs/BillRpc/WeightBillRpc.cs b/B3ClientService/Rpcs/BillRpc/WeightBillRpc.cs index aab118e..82b2d97 100644 --- a/B3ClientService/Rpcs/BillRpc/WeightBillRpc.cs +++ b/B3ClientService/Rpcs/BillRpc/WeightBillRpc.cs @@ -303,9 +303,10 @@ namespace BWP.B3ClientService.Rpcs.BillRpc } [Rpc] - public static void DoCheck(long b3ID, string creator) + public static int DoCheck(long b3ID, string creator) { WeightBillCheck.Insert(b3ID, creator); + return 1; } } }