From 60b5a1beb637e2151b9ece91b5f5bd0bdbe7c0be Mon Sep 17 00:00:00 2001 From: CZ Date: Thu, 27 Jun 2024 19:15:33 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=B0=E5=9C=BA=EF=BC=9A=E5=85=85=E7=94=B5?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E6=89=8B=E5=8A=A8=E4=B8=8A=E4=BC=A0=E4=BA=91?= =?UTF-8?q?=E5=B9=B3=E4=BF=AE=E8=AE=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Service/Station/ChargeOrderService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Service/Station/ChargeOrderService.cs b/Service/Station/ChargeOrderService.cs index b350526..8223553 100644 --- a/Service/Station/ChargeOrderService.cs +++ b/Service/Station/ChargeOrderService.cs @@ -164,9 +164,9 @@ public class ChargeOrderService : BaseServices /// /// /// - public Result Upload2Cloud(string cloudChargerOrder) + public Result Upload2Cloud(string id) { - List orders = BaseDal.QueryListByClause(it => it.CloudChargeOrder == cloudChargerOrder); + List orders = BaseDal.QueryListByClause(it => it.Id == Convert.ToInt32(id)); if (ObjUtils.IsEmpty(orders)) { return Result.Fail("数据不存在");