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("数据不存在");