换电订单导出字段对应、led重连程序卡顿尝试加锁测试

master
tq 2 months ago
parent 56f40b88f5
commit ae9ced98f1

@ -35,9 +35,13 @@ public class SwapOrderDto
/// Default: /// Default:
/// Nullable:True /// Nullable:True
/// </summary> /// </summary>
[ExporterHeader(DisplayName = "车牌号", IsBold = true)] [ExporterHeader(DisplayName = "车辆代码", IsBold = true)]
public string VehicleNo { get; set; } public string VehicleNo { get; set; }
[ExporterHeader(DisplayName = "车牌号", IsBold = true)]
public string VehicleNoCode { get; set; }
/// <summary> /// <summary>
/// Desc:公司 /// Desc:公司
/// Default: /// Default:
@ -176,7 +180,7 @@ public class SwapOrderDto
{ {
get get
{ {
return UpBatterySoc.HasValue ? $"{UpBatterySoc.Value}%" : null; return UpBatterySoc.HasValue ? $"{UpBatterySoc.Value.ToString("0.00")}%" : null;
} }
} }
@ -219,7 +223,7 @@ public class SwapOrderDto
{ {
get get
{ {
return DownBatterySoc.HasValue ? $"{DownBatterySoc.Value}%" : null; return DownBatterySoc.HasValue ? $"{DownBatterySoc.Value.ToString("0.00")}%" : null;
} }
} }

@ -136,7 +136,12 @@ public class LedClient
} }
} }
public static bool InnerSend(byte[] bytes) private static readonly object Locker = new object();
private static bool InnerSend(byte[] bytes)
{
lock (Locker)
{ {
if (_socket?.Connected ?? false) if (_socket?.Connected ?? false)
{ {
@ -170,6 +175,7 @@ public class LedClient
} }
} }
} }
}
public static bool SendMsgByKey(string key) public static bool SendMsgByKey(string key)
{ {

Loading…
Cancel
Save