Commit 1f5d3085 顾剑亮

添加大料架转移功能

1 个父辈 a68faf17
正在显示 38 个修改的文件 包含 299 行增加798 行删除
此文件类型无法预览
......@@ -39,7 +39,7 @@
</appender>
<logger name="SmartShelfLight">
<level value="Debug" />
<level value="Info" />
<appender-ref ref="SmartShelfLight" />
</logger>
<logger name="Hao_Bin">
......@@ -52,10 +52,11 @@
</logger>
</log4net>
<appSettings>
<!--<add key="WebService" value="http://10.85.196.40:8088/"/>-->
<add key="WebService" value="http://127.0.0.1:8088/"/>
<add key="WebService" value="http://10.85.196.40:8088/"/>
<!--<add key="WebService" value="http://127.0.0.1:8088/"/>-->
<add key="FirstLED" value=""/>
<add key="RFIDPort" value="12000"/>
<add key="RFIDPort1" value="12000"/>
<add key="RFIDPort2" value="12001"/>
<add key="DwellTime" value="5"/>
<add key ="StatusLedDmx" value ="0"/>
<add key ="ColorRuleConfig" value ="RGB"/>
......
......@@ -4,6 +4,7 @@ using System.Runtime.Serialization;
using System.ServiceModel.Activation;
using SmartShelfLight;
using System.IO;
using System;
namespace BLL
{
......@@ -18,6 +19,14 @@ namespace BLL
[OperationContract]
[WebGet(UriTemplate = "ShelfDark?rfid={rfid}&place={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result ShelfDark_Get(string rfid, string place);
[OperationContract]
[WebGet(UriTemplate = "TransferLight?line={line}&place={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result TransferLight_Get(string line, string place);
[OperationContract]
[WebGet(UriTemplate = "TransferDark?line={line}&place={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result TransferDark_Get(string line, string place);
#endregion
#region Post Json
......@@ -28,6 +37,14 @@ namespace BLL
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "ShelfDark", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result ShelfDark_Post(Info info);
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "TransferLight", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result TransferLight_Post(Stream info);
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "TransferDark", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result TransferDark_Post(Stream info);
#endregion
#region Post x-www-form-urlencoded
......@@ -41,21 +58,21 @@ namespace BLL
#endregion
#region TEST
[OperationContract]
[WebGet(UriTemplate = "StealAgv/takeOld?Place={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result takeOld1(string place);
//[OperationContract]
//[WebGet(UriTemplate = "StealAgv/takeOld?Place={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
//Result takeOld1(string place);
[OperationContract]
[WebGet(UriTemplate = "StealAgv/sendNew?PlaceList={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result sendNew1(string place);
//[OperationContract]
//[WebGet(UriTemplate = "StealAgv/sendNew?PlaceList={place}", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
//Result sendNew1(string place);
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "StealAgv/takeOld", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result takeOld2(Stream info);
//[OperationContract]
//[WebInvoke(Method = "POST", UriTemplate = "StealAgv/takeOld", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
//Result takeOld2(Stream info);
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "StealAgv/sendNew", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
Result sendNew2(Stream info);
//[OperationContract]
//[WebInvoke(Method = "POST", UriTemplate = "StealAgv/sendNew", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
//Result sendNew2(Stream info);
#endregion
}
......@@ -78,6 +95,11 @@ namespace BLL
[DataMember]
public string Msg { get; set; }
public Result()
{
Code = 0;
Msg = "";
}
}
......@@ -93,23 +115,36 @@ namespace BLL
{
}
#region Get
public Result ShelfLight_Get(string rfid, string place)
{
Common.log.Info("ShelfLight[GET] rfid=" + rfid + ", place=" + place);
return Light(rfid, place);
return ShelfLight(rfid, place);
}
public Result ShelfDark_Get(string rfid, string place)
{
Common.log.Info("ShelfDark[GET] rfid=" + rfid + ", place=" + place);
return Dark(rfid, place);
return ShelfDark(rfid, place);
}
public Result TransferLight_Get(string line, string place)
{
Common.log.Info("TransferLight[GET] line=" + line + " place=" + place);
return TransferLight(line, place);
}
public Result TransferDark_Get(string line, string place)
{
Common.log.Info("TransferDark[GET] line=" + line + " place=" + place);
return TransferDark(line, place);
}
#endregion
public Result ShelfLight_Post(Info info)
{
Common.log.Info("ShelfLight[POST] rfid=" + info.RFID + ", place=" + info.Place);
return Light(info.RFID, info.Place);
return ShelfLight(info.RFID, info.Place);
}
public Result ShelfLight_Post(Stream info)
......@@ -118,13 +153,13 @@ namespace BLL
string query = sr.ReadToEnd();
System.Collections.Specialized.NameValueCollection name = System.Web.HttpUtility.ParseQueryString(query);
Common.log.Info("ShelfLight[POST] rfid=" + name["RFID"] + ", place=" + name["Place"]);
return Light(name["RFID"], name["Place"]);
return ShelfLight(name["RFID"], name["Place"]);
}
public Result ShelfDark_Post(Info info)
{
Common.log.Info("ShelfDark[POST] rfid=" + info.RFID + ", place=" + info.Place);
return Dark(info.RFID, info.Place);
return ShelfDark(info.RFID, info.Place);
}
public Result ShelfDark_Post(Stream info)
......@@ -133,52 +168,50 @@ namespace BLL
string query = sr.ReadToEnd();
System.Collections.Specialized.NameValueCollection name = System.Web.HttpUtility.ParseQueryString(query);
Common.log.Info("ShelfDark[POST] rfid=" + name["RFID"] + ", place=" + name["Place"]);
return Dark(name["RFID"], name["Place"]);
return ShelfDark(name["RFID"], name["Place"]);
}
public Result takeOld1(string place)
public Result TransferLight_Post(Stream info)
{
Common.log.Info("钢网 takeOld[GET] place=" + place);
Result res = new Result();
res.Code = 0;
res.Msg = "OK";
return res;
StreamReader sr = new StreamReader(info);
string s = sr.ReadToEnd();
string[] arr = s.Split('&');
arr[0] = arr[0].Replace("line=", "");
arr[1] = arr[1].Replace("place=", "");
Common.log.Info("TransferLight[POST] line=" + arr[0] + " place=" + arr[1]);
return TransferLight(arr[0], arr[1]);
}
public Result sendNew1(string place)
public Result TransferDark_Post(Stream info)
{
Common.log.Info("钢网 sendNew[GET] place=" + place);
Result res = new Result();
res.Code = 0;
res.Msg = "OK";
return res;
StreamReader sr = new StreamReader(info);
string s = sr.ReadToEnd();
string[] arr = s.Split('&');
arr[0] = arr[0].Replace("line=", "");
arr[1] = arr[1].Replace("place=", "");
Common.log.Info("TransferDark[POST] line=" + arr[0] + " place=" + arr[1]);
return TransferDark(arr[0], arr[1]);
}
public Result takeOld2(Stream info)
{
Common.log.Info("钢网 takeOld[POST]");
Result res = new Result();
res.Code = 0;
res.Msg = "OK";
return res;
}
public Result sendNew2(Stream info)
{
Common.log.Info("钢网 sendNew[POST]");
Result res = new Result();
res.Code = 0;
res.Msg = "OK";
return res;
}
private Result Light(string rfid, string place)
private Result ShelfLight(string rfid, string place)
{
Result res = new Result();
......@@ -192,13 +225,10 @@ namespace BLL
{
if (result > 0 && result < 93)
{
Common.lines[lineIndex].LED.LightOn(SmartShelf.DeviceLibrary.Light.BlueLight(rfidIndex, result - 1, 50));
//if (Common.lines[lineIndex].LED_Light[rfidIndex] == "")
// Common.lines[lineIndex].LED_Light[rfidIndex] = place;
//else
// Common.lines[lineIndex].LED_Light[rfidIndex] += "," + place;
//Common.lines[lineIndex].LED.LightOn(SmartShelf.DeviceLibrary.Light.BlueLight(rfidIndex, result - 1, 50));
Common.lines[lineIndex].LED.OnlyLightOn(SmartShelf.DeviceLibrary.Light.BlueLight(rfidIndex, result - 1, 50));
Common.lines[lineIndex].LED_Place[result - 1] = true;
Common.log.Info("亮灯 RFID=" + rfid + " place=" + place + " dmxId=" + rfidIndex + " index=" + (result - 1).ToString());
Common.log.Info(string.Format("亮灯{0}-{1} RFID={2} place={3} dmxId={4} index={5}", Common.lines[lineIndex].Name, rfidIndex + 1, rfid, place, rfidIndex, result - 1));
UpdateLight?.Invoke(lineIndex, rfidIndex);
res.Code = 0;
res.Msg = "OK";
......@@ -225,7 +255,7 @@ namespace BLL
return res;
}
private Result Dark(string rfid, string place)
private Result ShelfDark(string rfid, string place)
{
Result res = new Result();
......@@ -249,7 +279,7 @@ namespace BLL
// Common.lines[lineIndex].LED_Light[rfidIndex] = Common.lines[lineIndex].LED_Light[rfidIndex].Replace("," + place, "");
Common.lines[lineIndex].LED_Place[result - 1] = false;
Common.log.Info("灭灯 RFID=" + rfid + " place=" + place + " dmxId=" + rfidIndex + " index=" + (result - 1).ToString());
Common.log.Info(string.Format("灭灯{0}-{1} RFID={2} place={3} dmxId={4} index={5}", Common.lines[lineIndex].Name, rfidIndex + 1, rfid, place, rfidIndex, result - 1));
UpdateLight?.Invoke(lineIndex, rfidIndex);
res.Code = 0;
res.Msg = "OK";
......@@ -276,6 +306,61 @@ namespace BLL
return res;
}
private Result TransferLight(string line, string place)
{
Result res = new Result();
int lineIdx = Common.lines.FindIndex(s => s.Name == line);
if (lineIdx == -1)
{
res.Code = -1;
res.Msg = "line[" + line + "] not found";
return res;
}
int placeIdx = Common.lines[lineIdx].TransferPlace.FindIndex(s => s[0] == place);
if (placeIdx == -1)
{
res.Code = -2;
res.Msg = "place[" + place + "] not found";
return res;
}
int dmxId = Convert.ToInt32(Common.lines[lineIdx].TransferPlace[placeIdx][1]);
int index = Convert.ToInt32(Common.lines[lineIdx].TransferPlace[placeIdx][2]);
Common.lines[lineIdx].LED.OnlyLightOn(SmartShelf.DeviceLibrary.Light.BlueLight(dmxId, index, 50));
Common.log.Info(string.Format("转移亮灯 line={0} place={1}", line, place));
res.Msg = "OK";
return res;
}
private Result TransferDark(string line, string place)
{
Result res = new Result();
int lineIdx = Common.lines.FindIndex(s => s.Name == line);
if (lineIdx == -1)
{
res.Code = -1;
res.Msg = "line[" + line + "] not found";
return res;
}
int placeIdx = Common.lines[lineIdx].TransferPlace.FindIndex(s => s[0] == place);
if (placeIdx == -1)
{
res.Code = -2;
res.Msg = "place[" + place + "] not found";
return res;
}
int dmxId = Convert.ToInt32(Common.lines[lineIdx].TransferPlace[placeIdx][1]);
int index = Convert.ToInt32(Common.lines[lineIdx].TransferPlace[placeIdx][2]);
Common.lines[lineIdx].LED.LightOff(SmartShelf.DeviceLibrary.Light.BlueLight(dmxId, index, 50));
Common.log.Info(string.Format("转移灭灯 line={0} place={1}", line, place));
res.Msg = "OK";
return res;
}
}
......
......@@ -48,7 +48,7 @@ namespace SmartShelfLight
public static log4net.ILog log;
//public static Asa.RFID.ReadAll rfid;
public static Asa.RFID.ReadAll1 reader1;
public static Asa.RFID.ReadAll2 reader2;
public static Asa.RFID.ReadAll reader3;
/// <summary>
/// RFID公司,浩斌,第一次使用的设备
......@@ -189,7 +189,7 @@ namespace SmartShelfLight
public struct Line
public class Line
{
/// <summary>
/// 产线名称
......@@ -227,6 +227,13 @@ namespace SmartShelfLight
/// RFID类型
/// </summary>
public string[] RFID_Type;
public List<string[]> TransferPlace;
public Line()
{
TransferPlace = new List<string[]>();
}
}
......
......@@ -40,6 +40,7 @@
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewButtonColumn();
this.Column5 = new System.Windows.Forms.DataGridViewButtonColumn();
((System.ComponentModel.ISupportInitialize)(this.DgvLight)).BeginInit();
this.SuspendLayout();
//
......@@ -64,7 +65,8 @@
this.Column1,
this.Column4,
this.Column3,
this.Column2});
this.Column2,
this.Column5});
this.DgvLight.Location = new System.Drawing.Point(12, 42);
this.DgvLight.Name = "DgvLight";
this.DgvLight.ReadOnly = true;
......@@ -120,11 +122,18 @@
//
// Column2
//
this.Column2.HeaderText = "修改";
this.Column2.HeaderText = "修改RFID";
this.Column2.Name = "Column2";
this.Column2.ReadOnly = true;
this.Column2.Width = 80;
//
// Column5
//
this.Column5.HeaderText = "灭灯";
this.Column5.Name = "Column5";
this.Column5.ReadOnly = true;
this.Column5.Width = 80;
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
......@@ -152,6 +161,7 @@
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewButtonColumn Column2;
private System.Windows.Forms.DataGridViewButtonColumn Column5;
}
}
......@@ -73,7 +73,7 @@ namespace SmartShelfLight
private void Rfid_Received(string ip, string id)
{
Common.log.Debug("RFID Received[" + ip + "] " + id);
Common.log.Info("RFID Received[" + ip + "] " + id);
bool rtn = Common.FindRfidIP(ip, out int lineIndex, out int rfidIndex);
if (!rtn) return;
......@@ -93,11 +93,26 @@ namespace SmartShelfLight
Common.ClearRfidID(id);
Common.lines[lineIndex].RFID_ID[rfidIndex] = id;
Common.lines[lineIndex].RFID_DwellTime[rfidIndex] = DateTime.Now.Ticks;
Common.log.Info(Common.lines[lineIndex].Name + " RFID=" + id);
//应该改成所有的更新
//来新架子先灭灯
int[] index = new int[92];
for (int i = 0; i < index.Length; i++)
index[i] = i;
Common.lines[lineIndex].LED.LightOff(rfidIndex, index);
Common.lines[lineIndex].LED_Place = new bool[92];
Common.log.Info(Common.lines[lineIndex].Name + "-" + (rfidIndex + 1).ToString() + " 来新架子,灭灯");
for (int i = 0; i < 4; i++)
DgvLight.Rows[lineIndex * 4 + i].Cells[1].Value = Common.lines[lineIndex].RFID_ID[i];
Common.log.Info(Common.lines[lineIndex].Name + " RFID=" + id);
//料架改变后关闭这个料架区域的所有灯
//int[] index = new int[92];
//for (int i = 0; i < index.Length; i++)
// index[i] = i;
//Common.lines[lineIndex].LED.LightOff(rfidIndex, index);
//Common.lines[lineIndex].LED_Place = new bool[92];
//DgvLight.Rows[lineIndex * 4 + rfidIndex].Cells[2].Value = "";
//保存RFID到文件
Common.SaveRfidID();
......@@ -133,19 +148,6 @@ namespace SmartShelfLight
private void FrmMain_Load(object sender, EventArgs e)
{
////托盘菜单
//notifyMenu = new ContextMenuStrip();
//ToolStripMenuItem itemShow = new ToolStripMenuItem("显示(&S)");
//itemShow.Click += ItemShow_Click;
//ToolStripMenuItem itemExit = new ToolStripMenuItem("退出(&X)");
//itemExit.Click += ItemExit_Click;
//notifyMenu.Items.Add(itemShow);
//notifyMenu.Items.Add(itemExit);
////托盘控件
//notify = new NotifyIcon { Icon = Icon, Visible = true, ContextMenuStrip = notifyMenu, Text = Text };
//notify.MouseDoubleClick += Notify_MouseDoubleClick;
Asa.WindowsForm.Load(this);
//读取保存的RFID
......@@ -173,13 +175,14 @@ namespace SmartShelfLight
{
if (Common.lines[i].RFID_Type[j] == Common.RFID_PuYue)
ip.Add(Common.lines[i].RFID_IP[j]);
int n = DgvLight.Rows.Add(Common.lines[i].Name, Common.lines[i].RFID_ID[j], "", "修改");
int n = DgvLight.Rows.Add(Common.lines[i].Name, Common.lines[i].RFID_ID[j], "", "修改", "灭灯");
DgvLight.Rows[n].HeaderCell.Value = (n + 1).ToString();
DgvLight.Rows[n].DefaultCellStyle.BackColor = (i % 2 == 0 ? bg1 : bg2);
}
}
int port = Convert.ToInt32(Common.appConfig.AppSettings.Settings["RFIDPort"].Value);
int port1 = Convert.ToInt32(Common.appConfig.AppSettings.Settings["RFIDPort1"].Value);
int port2 = Convert.ToInt32(Common.appConfig.AppSettings.Settings["RFIDPort2"].Value);
Common.service.UpdateLight += Service_UpdateLight;
//Common.rfid = new Asa.RFID.ReadAll("ShelfRFID");
//Common.rfid.Received += Rfid_Received;
......@@ -187,12 +190,12 @@ namespace SmartShelfLight
Common.reader1 = new Asa.RFID.ReadAll1(Common.RFID_HaoBin);
Common.reader1.Received += Rfid_Received;
Common.reader1.Start(port);
Common.reader2 = new Asa.RFID.ReadAll2(Common.RFID_PuYue);
Common.reader2.Received += Rfid_Received;
Common.reader2.Start(ip.ToArray());
Common.reader1.Start(port1);
Common.reader3 = new Asa.RFID.ReadAll(Common.RFID_PuYue);
Common.reader3.Received += Rfid_Received;
//Common.reader3.Start(ip.ToArray());
Common.reader3.Start(port2);
}
......@@ -212,7 +215,7 @@ namespace SmartShelfLight
if (Asa.WindowsForm.Close(e))
{
Common.reader1.Stop();
Common.reader2.Stop();
Common.reader3.Stop();
}
}
......@@ -225,17 +228,31 @@ namespace SmartShelfLight
private void DgvLight_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
int row = e.RowIndex;
int idx1 = row / 4;
int idx2 = row % 4;
if (e.ColumnIndex == 3) //修改
{
string s = Microsoft.VisualBasic.Interaction.InputBox("RFID", "输入", "");
int idx1 = row / 4;
int idx2 = row % 4;
if (s == "") return; //取消
s = s.Replace(" ", "");
Common.log.Info("手动修改RFID " + Common.lines[idx1].RFID_ID[idx2] + "=>" + s);
Common.lines[idx1].RFID_ID[idx2] = s;
DgvLight.Rows[row].Cells[1].Value = s;
Common.SaveRfidID();
}
else if (e.ColumnIndex == 4) //灭灯
{
int[] index = new int[92];
for (int i = 0; i < index.Length; i++)
index[i] = i;
Common.lines[idx1].LED.LightOff(idx2, index);
Common.lines[idx1].LED_Place = new bool[92];
DgvLight.Rows[row].Cells[2].Value = "";
Common.log.Info("手动灭灯 LineIndex=" + idx1 + " RfidIndex=" + idx2);
}
}
}
......
......@@ -129,6 +129,9 @@
<metadata name="Column2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Column5.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
......
......@@ -27,15 +27,19 @@ namespace SmartShelfLight
private void BtnAllLightOn_Click(object sender, EventArgs e)
{
if (CboIP.Text.Length == 0) return;
string[] ip = CboIP.Text.Split(' ');
LEDBaseModule.GetModule(ip[ip.Length - 1]).AllLightOn();
string[] arr = CboIP.Text.Split(' ');
string ip = arr[arr.Length - 1];
LEDManager.GetLedModule(ip).AllLightOn();
Common.log.Info("测试 LED[" + ip + "] 全部点亮");
}
private void BtnAllLightOff_Click(object sender, EventArgs e)
{
if (CboIP.Text.Length == 0) return;
string[] ip = CboIP.Text.Split(' ');
LEDBaseModule.GetModule(ip[ip.Length - 1]).AllLightOff();
string[] arr = CboIP.Text.Split(' ');
string ip = arr[arr.Length - 1];
LEDManager.GetLedModule(ip).AllLightOff();
Common.log.Info("测试 LED[" + ip + "] 全部灭灯");
}
}
}
......@@ -19,7 +19,6 @@ namespace SmartShelfLight
log4net.Config.XmlConfigurator.Configure();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (Asa.WindowsForm.IsRun()) return;
if (!Asa.WindowsForm.IsAdmin()) return;
......@@ -65,6 +64,16 @@ namespace SmartShelfLight
Common.lines.Add(line);
}
path = Environment.CurrentDirectory + "\\Config\\Transfer.csv";
arr = System.IO.File.ReadAllLines(path, System.Text.Encoding.UTF8);
for (int i = 1; i < arr.Length; i++) //第一行是标题
{
string[] tt = arr[i].Split(',');
int idx = Common.lines.FindIndex(s => s.Name == tt[0]);
if (idx == -1) continue;
Common.lines[idx].TransferPlace.Add(new string[] { tt[1], tt[2], tt[3] });
}
Common.log.Info("读取配置完成");
}
catch (Exception ex)
......
......@@ -41,21 +41,19 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Asa.RFID.HFRead">
<HintPath>..\..\RFID\RFID\bin\Debug\Asa.RFID.HFRead.dll</HintPath>
<HintPath>..\..\..\DLL\RFID\Asa.RFID.HFRead.dll</HintPath>
</Reference>
<Reference Include="Asa.RFID.HiStation, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\RFID\RFID-HiStation\bin\Debug\Asa.RFID.HiStation.dll</HintPath>
<Reference Include="Asa.RFID.HiStation">
<HintPath>..\..\..\DLL\RFID\Asa.RFID.HiStation.dll</HintPath>
</Reference>
<Reference Include="Asa.RFID.IReadAll, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\RFID\RFID_Interface\bin\Debug\Asa.RFID.IReadAll.dll</HintPath>
<Reference Include="Asa.RFID.IReadAll">
<HintPath>..\..\..\DLL\RFID\Asa.RFID.IReadAll.dll</HintPath>
</Reference>
<Reference Include="ClassFormParent">
<HintPath>..\..\ClassFormParent\ClassFormParent\bin\Debug\ClassFormParent.dll</HintPath>
<HintPath>..\..\..\DLL\ClassFormParent\ClassFormParent.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\..\..\..\DLL\log4net.dll</HintPath>
<HintPath>..\..\..\DLL\log4net.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System" />
......
<?xml version="1.0"?>
<doc>
<assembly>
<name>Asa.RFID.HFRead</name>
</assembly>
<members>
<member name="T:Asa.RFID.ReadAll1">
<summary>
读取所有RFID
</summary>
</member>
<member name="M:Asa.RFID.ReadAll1.#ctor(System.String)">
<summary>
读取所有RFID
</summary>
<param name="logName">日志名称</param>
</member>
<member name="M:Asa.RFID.ReadAll1.Start(System.Int32)">
<summary>
开启
</summary>
<param name="port">RFID设备的端口</param>
</member>
<member name="M:Asa.RFID.ReadAll1.Stop">
<summary>
停止
</summary>
</member>
<member name="M:Asa.RFID.ReadAll1.Read(System.String)">
<summary>
读取ID号
</summary>
<param name="ip"></param>
<returns></returns>
</member>
<member name="M:Asa.RFID.ReadAll1.Clear(System.String)">
<summary>
清除缓存
</summary>
<param name="ip"></param>
</member>
</members>
</doc>
10.85.196.1,
10.85.196.2,
10.85.196.3,
10.85.196.4,
10.85.196.6,
10.85.196.7,
10.85.196.8,
10.85.196.9,
10.85.196.11,
10.85.196.12,
10.85.196.13,
10.85.196.14,
10.85.196.16,
10.85.196.17,
10.85.196.18,
10.85.196.19,
10.85.196.21,
10.85.196.22,
10.85.196.23,
10.85.196.24,
10.85.196.26,
10.85.196.27,
10.85.196.28,
10.85.196.29,
10.85.196.31,
10.85.196.32,
10.85.196.33,
10.85.196.34,
10.85.196.36,
10.85.196.37,
10.85.196.38,
10.85.196.39,
10.85.196.42,
10.85.196.43,
10.85.196.44,
10.85.196.45,
10.85.196.47,
10.85.196.48,
10.85.196.48,
10.85.196.50,
10.85.196.52,
10.85.196.53,
10.85.196.54,
10.85.196.55,
10.85.196.57,
10.85.196.58,
10.85.196.59,
10.85.196.60,
10.85.196.62,
10.85.196.63,
10.85.196.64,
10.85.196.65,
10.85.196.67,
10.85.196.68,
10.85.196.69,
10.85.196.70,

\ No newline at end of file
Name,Vendor1,Vendor2,Vendor3,Vendor4,RFID1,RFID2,RFID3,RFID4,LED
D1,Hao_Bin,Hao_Bin,Hao_Bin,Hao_Bin,10.85.196.1,10.85.196.2,10.85.196.3,10.85.196.4,10.85.196.72
D2,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.6,10.85.196.7,10.85.196.8,10.85.196.9,10.85.196.10
D3,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.11,10.85.196.12,10.85.196.13,10.85.196.14,10.85.196.15
D4,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.16,10.85.196.17,10.85.196.18,10.85.196.19,10.85.196.20
D5,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.21,10.85.196.22,10.85.196.23,10.85.196.24,10.85.196.25
D6,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.26,10.85.196.27,10.85.196.28,10.85.196.29,10.85.196.30
D8,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.31,10.85.196.32,10.85.196.33,10.85.196.34,10.85.196.35
D9,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.36,10.85.196.37,10.85.196.38,10.85.196.39,10.85.196.41
D10,Pu_Yue,Pu_Yue,Pu_Yue,Hao_Bin,10.85.196.42,10.85.196.43,10.85.196.44,10.85.196.45,10.85.196.46
D11,Hao_Bin,Hao_Bin,Hao_Bin,Hao_Bin,10.85.196.47,10.85.196.48,10.85.196.48,10.85.196.50,10.85.196.51
D12,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.196.52,10.85.196.53,10.85.196.54,10.85.196.55,10.85.196.56
D14,Hao_Bin,Hao_Bin,Hao_Bin,Hao_Bin,10.85.196.57,10.85.196.58,10.85.196.59,10.85.196.60,10.85.196.61
D15,Hao_Bin,Hao_Bin,Hao_Bin,Hao_Bin,10.85.196.62,10.85.196.63,10.85.196.64,10.85.196.65,10.85.196.66
D16,Hao_Bin,Hao_Bin,Hao_Bin,Hao_Bin,10.85.196.67,10.85.196.68,10.85.196.69,10.85.196.70,10.85.196.71
C1,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.11,10.85.197.12,10.85.197.13,10.85.197.14,10.85.197.15
C2,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.16,10.85.197.17,10.85.197.18,10.85.197.19,10.85.197.20
C3,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.21,10.85.197.22,10.85.197.23,10.85.197.24,10.85.197.25
C4,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.26,10.85.197.27,10.85.197.28,10.85.197.29,10.85.197.30
C5,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.31,10.85.197.32,10.85.197.33,10.85.197.34,10.85.197.35
C6,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.36,10.85.197.37,10.85.197.38,10.85.197.39,10.85.197.41
C7,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.42,10.85.197.43,10.85.197.44,10.85.197.45,10.85.197.46
C8,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.47,10.85.197.48,10.85.197.49,10.85.197.50,10.85.197.51
C9,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.52,10.85.197.53,10.85.197.54,10.85.197.55,10.85.197.56
C10,Pu_Yue,Pu_Yue,Pu_Yue,Pu_Yue,10.85.197.57,10.85.197.58,10.85.197.59,10.85.197.60,10.85.197.61
line,place,dmxId,Index
D1,1,4,0
D1,2,4,1
D1,3,4,2
D1,4,4,3
D2,1,4,0
D2,2,4,1
D2,3,4,2
D2,4,4,3
......@@ -39,7 +39,7 @@
</appender>
<logger name="SmartShelfLight">
<level value="Debug" />
<level value="Info" />
<appender-ref ref="SmartShelfLight" />
</logger>
<logger name="Hao_Bin">
......@@ -52,10 +52,11 @@
</logger>
</log4net>
<appSettings>
<!--<add key="WebService" value="http://10.85.196.40:8088/"/>-->
<add key="WebService" value="http://127.0.0.1:8088/"/>
<add key="WebService" value="http://10.85.196.40:8088/"/>
<!--<add key="WebService" value="http://127.0.0.1:8088/"/>-->
<add key="FirstLED" value=""/>
<add key="RFIDPort" value="12000"/>
<add key="RFIDPort1" value="12000"/>
<add key="RFIDPort2" value="12001"/>
<add key="DwellTime" value="5"/>
<add key ="StatusLedDmx" value ="0"/>
<add key ="ColorRuleConfig" value ="RGB"/>
......
[2020-08-15 14:09:39,084][1]INFO Server Start
[2020-08-15 14:09:52,815][1]INFO Server Stop
[2020-08-15 14:09:52,832][7]ERROR Socket Close
[2020-08-15 14:10:40,050][1]INFO Server Start
[2020-08-15 14:15:13,343][1]INFO Server Start
[2020-08-15 14:16:06,326][1]INFO Server Stop
[2020-08-15 14:16:06,354][7]ERROR Socket Close
[2020-08-15 14:16:17,715][1]INFO Server Start
[2020-08-15 14:17:02,652][1]INFO Server Stop
[2020-08-15 14:17:02,668][7]ERROR Socket Close
[2020-08-14 17:52:53,335][1]INFO Server Start
[2020-08-14 17:53:29,416][1]INFO Server Stop
[2020-08-14 17:53:29,443][8]ERROR Socket Close
此文件的差异太大,无法显示。
[2020-08-14 17:52:53,418][1]INFO Open[10.85.196.6] OK
[2020-08-14 17:52:53,477][1]INFO Open[10.85.196.7] OK
[2020-08-14 17:52:53,547][1]INFO Open[10.85.196.8] OK
[2020-08-14 17:52:53,614][1]INFO Open[10.85.196.9] OK
[2020-08-14 17:52:53,652][1]INFO Open[10.85.196.11] OK
[2020-08-14 17:52:53,807][1]INFO Open[10.85.196.12] OK
[2020-08-14 17:52:53,871][1]INFO Open[10.85.196.13] OK
[2020-08-14 17:52:53,960][1]INFO Open[10.85.196.14] OK
[2020-08-14 17:52:53,983][1]INFO Open[10.85.196.16] OK
[2020-08-14 17:52:54,137][1]INFO Open[10.85.196.17] OK
[2020-08-14 17:52:54,198][1]INFO Open[10.85.196.18] OK
[2020-08-14 17:52:54,284][1]INFO Open[10.85.196.19] OK
[2020-08-14 17:52:54,297][1]INFO Open[10.85.196.21] OK
[2020-08-14 17:52:54,360][1]INFO Open[10.85.196.22] OK
[2020-08-14 17:52:54,489][1]INFO Open[10.85.196.23] OK
[2020-08-14 17:52:54,585][1]INFO Open[10.85.196.24] OK
[2020-08-14 17:52:54,587][1]INFO Open[10.85.196.26] OK
[2020-08-14 17:52:54,735][1]INFO Open[10.85.196.27] OK
[2020-08-14 17:52:54,811][1]INFO Open[10.85.196.28] OK
[2020-08-14 17:52:54,818][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:52:54,819][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:52:54,843][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:52:54,843][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:52:54,843][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:52:54,821][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:52:54,962][1]INFO Open[10.85.196.29] OK
[2020-08-14 17:52:55,020][1]INFO Open[10.85.196.31] OK
[2020-08-14 17:52:55,090][1]INFO Open[10.85.196.32] OK
[2020-08-14 17:52:55,160][1]INFO Open[10.85.196.33] OK
[2020-08-14 17:52:55,324][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:52:55,324][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:52:55,324][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:52:55,324][1]INFO Open[10.85.196.34] OK
[2020-08-14 17:52:55,333][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:52:55,333][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:52:55,333][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:52:55,361][1]INFO Open[10.85.196.36] OK
[2020-08-14 17:52:55,471][1]INFO Open[10.85.196.37] OK
[2020-08-14 17:52:55,498][1]INFO Open[10.85.196.38] OK
[2020-08-14 17:52:55,571][1]INFO Open[10.85.196.39] OK
[2020-08-14 17:52:55,571][1]INFO Server Start
[2020-08-14 17:52:55,808][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:52:55,808][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:52:55,808][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:52:55,808][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:52:55,808][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:52:55,809][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:52:56,311][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:52:56,312][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:52:56,314][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:52:56,317][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:52:56,319][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:52:56,807][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:52:56,807][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:52:56,810][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:52:56,810][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:52:56,810][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:52:56,810][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:52:56,811][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:52:56,811][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:52:56,811][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:52:56,811][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:52:56,811][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:52:57,305][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:52:57,305][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:52:57,305][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:52:57,305][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:52:57,307][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:52:57,307][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:52:57,805][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:52:57,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:52:57,805][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:52:57,805][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:52:57,806][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:52:57,806][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:52:58,305][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:52:58,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:52:58,305][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:52:58,305][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:52:58,306][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:52:58,805][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:52:58,805][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:52:58,805][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:52:58,805][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:52:58,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:52:59,305][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:52:59,805][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:00,305][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:00,305][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:00,305][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:00,305][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:00,306][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:00,306][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:00,805][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:00,805][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:00,805][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:00,806][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:00,806][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:01,306][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:01,307][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:01,307][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:01,307][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:01,805][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:01,805][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:01,805][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:01,806][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:01,806][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:01,806][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:02,305][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:02,306][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:02,306][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:02,306][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:02,306][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:02,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:02,805][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:02,805][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:02,805][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:02,806][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:02,806][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:03,305][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:03,305][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:03,305][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:03,305][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:03,305][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:03,805][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:04,305][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:04,805][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:05,305][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:05,305][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:05,305][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:05,305][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:05,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:05,805][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:05,805][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:05,806][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:05,807][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:06,305][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:06,305][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:06,306][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:06,306][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:06,306][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:06,306][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:06,805][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:06,805][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:06,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:06,806][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:06,806][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:06,806][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:07,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:07,305][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:07,305][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:07,306][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:07,306][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:07,805][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:07,805][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:07,806][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:07,806][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:07,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:08,305][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:08,805][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:08,805][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:08,805][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:08,806][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:08,806][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:08,806][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:09,305][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:09,305][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:09,305][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:09,306][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:09,306][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:09,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:09,805][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:09,806][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:09,806][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:09,806][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:09,806][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:10,305][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:10,307][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:10,306][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:10,805][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:10,806][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:10,806][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:10,806][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:10,806][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:10,807][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:11,305][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:11,805][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:11,805][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:11,806][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:11,806][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:11,806][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:12,305][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:12,305][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:12,305][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:12,306][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:12,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:12,805][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:12,806][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:12,806][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:12,806][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:12,806][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:12,806][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:13,305][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:13,305][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:13,305][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:13,305][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:13,306][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:13,306][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:13,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:14,305][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:14,305][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:14,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:14,306][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:14,306][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:14,805][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:14,806][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:14,807][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:14,807][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:14,807][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:15,305][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:15,306][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:15,306][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:15,306][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:15,306][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:15,307][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:15,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:15,805][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:15,806][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:15,806][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:15,806][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:15,806][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:16,305][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:16,305][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:16,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:16,305][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:16,306][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:16,805][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:16,805][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:16,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:16,806][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:16,806][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:17,305][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:17,305][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:17,306][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:17,306][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:17,306][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:17,306][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:17,805][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:17,805][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:17,805][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:17,805][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:17,805][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:17,806][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:18,305][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:18,305][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:18,305][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:18,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:18,306][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:18,306][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:18,805][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:18,805][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:18,806][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:18,806][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:18,806][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:19,305][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:19,305][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:19,305][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:19,305][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:19,306][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:19,307][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:19,805][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:19,805][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:19,805][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:19,806][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:19,806][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:19,806][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:20,305][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:20,305][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:20,305][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:20,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:20,306][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:20,306][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:20,805][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:20,805][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:20,805][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:20,806][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:20,806][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:21,305][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:21,305][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:21,305][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:21,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:21,306][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:21,805][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:21,805][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:21,805][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:21,805][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:21,806][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:21,806][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:22,305][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:22,305][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:22,305][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:22,306][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:22,306][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:22,306][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:22,805][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:22,805][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:22,805][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:22,806][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:22,806][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:22,806][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:23,305][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:23,305][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:23,306][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:23,306][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:23,306][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:23,805][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:23,805][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:23,805][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:23,806][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:23,807][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:24,305][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:24,305][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:24,306][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:24,306][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:24,306][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:24,306][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:24,805][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:24,805][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:24,805][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:24,806][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:24,806][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:24,806][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:25,305][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:25,305][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:25,305][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:25,305][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:25,306][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:25,805][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:25,805][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:25,805][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:25,806][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:25,806][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:26,305][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:26,305][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:26,305][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:26,306][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:26,306][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:26,306][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:26,805][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:26,805][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:26,806][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:26,806][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:26,806][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:26,806][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:27,305][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:27,306][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:27,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:27,306][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:27,306][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:27,306][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:27,805][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:27,805][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:27,806][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:27,806][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:27,806][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:28,305][Reconnect]INFO Ping[10.85.196.6]请求没有响应
[2020-08-14 17:53:28,305][Reconnect]INFO Ping[10.85.196.8]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.7]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.9]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.12]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.11]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:28,306][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:28,307][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:28,307][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:28,805][Reconnect]INFO Ping[10.85.196.18]请求没有响应
[2020-08-14 17:53:28,805][Reconnect]INFO Ping[10.85.196.13]请求没有响应
[2020-08-14 17:53:28,806][Reconnect]INFO Ping[10.85.196.17]请求没有响应
[2020-08-14 17:53:28,806][Reconnect]INFO Ping[10.85.196.16]请求没有响应
[2020-08-14 17:53:28,806][Reconnect]INFO Ping[10.85.196.19]请求没有响应
[2020-08-14 17:53:28,806][Reconnect]INFO Ping[10.85.196.14]请求没有响应
[2020-08-14 17:53:29,306][Reconnect]INFO Ping[10.85.196.22]请求没有响应
[2020-08-14 17:53:29,306][Reconnect]INFO Ping[10.85.196.27]请求没有响应
[2020-08-14 17:53:29,306][Reconnect]INFO Ping[10.85.196.24]请求没有响应
[2020-08-14 17:53:29,306][Reconnect]INFO Ping[10.85.196.21]请求没有响应
[2020-08-14 17:53:29,306][Reconnect]INFO Ping[10.85.196.23]请求没有响应
[2020-08-14 17:53:29,307][Reconnect]INFO Ping[10.85.196.26]请求没有响应
[2020-08-14 17:53:29,417][1]DEBUG Write[10.85.196.6] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,470][1]INFO Close[10.85.196.6] OK
[2020-08-14 17:53:29,470][1]DEBUG Write[10.85.196.7] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,521][1]INFO Close[10.85.196.7] OK
[2020-08-14 17:53:29,521][1]DEBUG Write[10.85.196.8] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,572][1]INFO Close[10.85.196.8] OK
[2020-08-14 17:53:29,572][1]DEBUG Write[10.85.196.9] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,623][1]INFO Close[10.85.196.9] OK
[2020-08-14 17:53:29,623][1]DEBUG Write[10.85.196.11] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,674][1]INFO Close[10.85.196.11] OK
[2020-08-14 17:53:29,674][1]DEBUG Write[10.85.196.12] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,725][1]INFO Close[10.85.196.12] OK
[2020-08-14 17:53:29,725][1]DEBUG Write[10.85.196.13] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,776][1]INFO Close[10.85.196.13] OK
[2020-08-14 17:53:29,776][1]DEBUG Write[10.85.196.14] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,805][Reconnect]INFO Ping[10.85.196.32]请求没有响应
[2020-08-14 17:53:29,805][Reconnect]INFO Ping[10.85.196.33]请求没有响应
[2020-08-14 17:53:29,805][Reconnect]INFO Ping[10.85.196.29]请求没有响应
[2020-08-14 17:53:29,805][Reconnect]INFO Ping[10.85.196.31]请求没有响应
[2020-08-14 17:53:29,806][Reconnect]INFO Ping[10.85.196.28]请求没有响应
[2020-08-14 17:53:29,833][1]INFO Close[10.85.196.14] OK
[2020-08-14 17:53:29,833][1]DEBUG Write[10.85.196.16] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,884][1]INFO Close[10.85.196.16] OK
[2020-08-14 17:53:29,884][1]DEBUG Write[10.85.196.17] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,935][1]INFO Close[10.85.196.17] OK
[2020-08-14 17:53:29,935][1]DEBUG Write[10.85.196.18] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:29,986][1]INFO Close[10.85.196.18] OK
[2020-08-14 17:53:29,986][1]DEBUG Write[10.85.196.19] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,037][1]INFO Close[10.85.196.19] OK
[2020-08-14 17:53:30,037][1]DEBUG Write[10.85.196.21] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,089][1]INFO Close[10.85.196.21] OK
[2020-08-14 17:53:30,089][1]DEBUG Write[10.85.196.22] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,140][1]INFO Close[10.85.196.22] OK
[2020-08-14 17:53:30,140][1]DEBUG Write[10.85.196.23] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,191][1]INFO Close[10.85.196.23] OK
[2020-08-14 17:53:30,191][1]DEBUG Write[10.85.196.24] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,241][1]INFO Close[10.85.196.24] OK
[2020-08-14 17:53:30,241][1]DEBUG Write[10.85.196.26] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,292][1]INFO Close[10.85.196.26] OK
[2020-08-14 17:53:30,292][1]DEBUG Write[10.85.196.27] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,305][Reconnect]INFO Ping[10.85.196.36]请求没有响应
[2020-08-14 17:53:30,305][Reconnect]INFO Ping[10.85.196.34]请求没有响应
[2020-08-14 17:53:30,305][Reconnect]INFO Ping[10.85.196.39]请求没有响应
[2020-08-14 17:53:30,305][Reconnect]INFO Ping[10.85.196.37]请求没有响应
[2020-08-14 17:53:30,305][Reconnect]INFO Ping[10.85.196.38]请求没有响应
[2020-08-14 17:53:30,361][1]INFO Close[10.85.196.27] OK
[2020-08-14 17:53:30,361][1]DEBUG Write[10.85.196.28] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,412][1]INFO Close[10.85.196.28] OK
[2020-08-14 17:53:30,412][1]DEBUG Write[10.85.196.29] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,463][1]INFO Close[10.85.196.29] OK
[2020-08-14 17:53:30,463][1]DEBUG Write[10.85.196.31] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,514][1]INFO Close[10.85.196.31] OK
[2020-08-14 17:53:30,514][1]DEBUG Write[10.85.196.32] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,565][1]INFO Close[10.85.196.32] OK
[2020-08-14 17:53:30,565][1]DEBUG Write[10.85.196.33] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,616][1]INFO Close[10.85.196.33] OK
[2020-08-14 17:53:30,616][1]DEBUG Write[10.85.196.34] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,667][1]INFO Close[10.85.196.34] OK
[2020-08-14 17:53:30,667][1]DEBUG Write[10.85.196.36] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,718][1]INFO Close[10.85.196.36] OK
[2020-08-14 17:53:30,718][1]DEBUG Write[10.85.196.37] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,769][1]INFO Close[10.85.196.37] OK
[2020-08-14 17:53:30,769][1]DEBUG Write[10.85.196.38] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,821][1]INFO Close[10.85.196.38] OK
[2020-08-14 17:53:30,821][1]DEBUG Write[10.85.196.39] 00 01 00 00 00 09 FF 10 00 04 00 01 02 00 01
[2020-08-14 17:53:30,871][1]INFO Close[10.85.196.39] OK
[2020-08-14 17:53:30,872][1]INFO Server Stop
[2020-08-15 14:09:34,791][1]INFO =====Load=====
[2020-08-15 14:09:35,590][1]INFO 读取配置完成
[2020-08-15 14:09:38,838][1]INFO Web服务已开启
[2020-08-15 14:09:56,110][1]INFO Web服务已关闭
[2020-08-15 14:09:56,110][1]INFO =====Exit=====
[2020-08-15 14:10:39,388][1]INFO =====Load=====
[2020-08-15 14:10:39,572][1]INFO 读取配置完成
[2020-08-15 14:10:39,944][1]INFO Web服务已开启
[2020-08-15 14:15:12,780][1]INFO =====Load=====
[2020-08-15 14:15:13,012][1]INFO 读取配置完成
[2020-08-15 14:15:13,205][1]INFO Web服务已开启
[2020-08-15 14:16:08,198][1]INFO Web服务已关闭
[2020-08-15 14:16:08,199][1]INFO =====Exit=====
[2020-08-15 14:16:17,221][1]INFO =====Load=====
[2020-08-15 14:16:17,374][1]INFO 读取配置完成
[2020-08-15 14:16:17,555][1]INFO Web服务已开启
[2020-08-15 14:17:04,551][1]INFO Web服务已关闭
[2020-08-15 14:17:04,551][1]INFO =====Exit=====
[2020-08-14 17:52:51,151][1]INFO =====Load=====
[2020-08-14 17:52:51,232][1]INFO 读取配置完成
[2020-08-14 17:52:51,593][1]INFO Web服务已开启
[2020-08-14 17:53:30,907][1]INFO Web服务已关闭
[2020-08-14 17:53:30,907][1]INFO =====Exit=====
6f9e7f004d8a797affe37db438e4d714a7024fd8
7188c8c0d08329c1acc83713f7cab49f7e3acfe2
......@@ -30,3 +30,23 @@ D:\OneDrive - 上海挚锦科技有限公司\SMD\SmartShelfLight\SmartShelfLight
D:\OneDrive - 上海挚锦科技有限公司\SMD\SmartShelfLight\SmartShelfLight\bin\Debug\ClassFormParent.pdb
D:\OneDrive - 上海挚锦科技有限公司\SMD\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.FrmTest.resources
D:\OneDrive - 上海挚锦科技有限公司\SMD\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.csprojAssemblyReference.cache
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\SmartShelfLight.exe.config
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\SmartShelfLight.exe
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\SmartShelfLight.pdb
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.HFRead.dll
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.HiStation.dll
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.IReadAll.dll
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\ClassFormParent.dll
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\log4net.dll
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.HFRead.pdb
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.HiStation.pdb
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\Asa.RFID.IReadAll.pdb
D:\Neotel\SmartShelfLight\SmartShelfLight\bin\Debug\ClassFormParent.pdb
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.FrmMain.resources
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.FrmTest.resources
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.Properties.Resources.resources
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.csproj.GenerateResource.cache
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.csproj.CoreCompileInputs.cache
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.csproj.CopyComplete
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.exe
D:\Neotel\SmartShelfLight\SmartShelfLight\obj\Debug\SmartShelfLight.pdb
大料架库位转移亮灯接口,TransferLight
大料架库位转移灭灯接口,TransferDark
接口前面的http和亮灯料架是同一个
Get
TransferLight?line=D1&place=1
TransferDark?line=D1&place=1
Post
TransferLight
Body:line=D1&place=1
TransferDark
Body:line=D1&place=1
\ No newline at end of file
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!