1 修正了温度、电导率等
2 修改了部分连接
This commit is contained in:
parent
d0d1373608
commit
e3c4bc336b
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -268,6 +268,9 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
int overTime4 = 0;
|
int overTime4 = 0;
|
||||||
int overTime5 = 0;
|
int overTime5 = 0;
|
||||||
int overTime6 = 0;
|
int overTime6 = 0;
|
||||||
|
|
||||||
|
float rjy = 5.12f;
|
||||||
|
float wd = 26.6f;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
@ -510,8 +513,8 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
//负责和客户端通信的Socket
|
//负责和客户端通信的Socket
|
||||||
Others.g_socketSend = socketWatch.Accept();
|
Others.g_socketSend = socketWatch.Accept();
|
||||||
|
|
||||||
Others.g_socketSend.IOControl(IOControlCode.KeepAliveValues, GetKeepAliveData(), null);
|
//Others.g_socketSend.IOControl(IOControlCode.KeepAliveValues, GetKeepAliveData(), null);
|
||||||
Others.g_socketSend.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.KeepAlive, true);
|
//Others.g_socketSend.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.KeepAlive, true);
|
||||||
|
|
||||||
Others.g_ip = Others.g_socketSend.RemoteEndPoint.ToString();
|
Others.g_ip = Others.g_socketSend.RemoteEndPoint.ToString();
|
||||||
Console.WriteLine(Others.g_ip);
|
Console.WriteLine(Others.g_ip);
|
||||||
@ -650,7 +653,8 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
{
|
{
|
||||||
Socket socketSend = o as Socket;
|
Socket socketSend = o as Socket;
|
||||||
|
|
||||||
while (Others.g_flagReceive)
|
bool flag = true;
|
||||||
|
while (flag)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -672,44 +676,47 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
EveryDayLog.Write("定时器(定时获取数据)已关闭!");
|
EveryDayLog.Write("定时器(定时获取数据)已关闭!");
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
flag = false;
|
||||||
|
|
||||||
//timerSendJson.Enabled = false;
|
//timerSendJson.Enabled = false;
|
||||||
//timerSendJson.Stop();
|
//timerSendJson.Stop();
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
////判断是否连接
|
//判断是否连接
|
||||||
//if (socketSend.Poll(1000, SelectMode.SelectRead) && socketSend.Available == 0)
|
if (socketSend.Poll(1000, SelectMode.SelectRead) && socketSend.Available == 0)
|
||||||
//{
|
{
|
||||||
// //连接断开
|
//连接断开
|
||||||
// socketSend.Close();
|
socketSend.Close();
|
||||||
// if (Others.g_dicSocket.ContainsKey(Others.g_ip))
|
if (Others.g_dicSocket.ContainsKey(Others.g_ip))
|
||||||
// {
|
{
|
||||||
// Others.g_dicSocket.Remove(Others.g_ip);
|
Others.g_dicSocket.Remove(Others.g_ip);
|
||||||
// }
|
}
|
||||||
// Console.WriteLine("ReceiveError移除远程连接:" + Others.g_ip + "\r" + DateTime.Now);
|
Console.WriteLine("ReceiveError移除远程连接:" + Others.g_ip + "\r" + DateTime.Now);
|
||||||
// EveryDayLog.Write("ReceiveError移除远程连接:" + Others.g_ip);
|
EveryDayLog.Write("ReceiveError移除远程连接:" + Others.g_ip);
|
||||||
// CallInvokeUIUpdate("UpdatelblState", "连接断开");
|
CallInvokeUIUpdate("UpdatelblState", "连接断开");
|
||||||
|
|
||||||
// this.Invoke(new MethodInvoker(delegate
|
this.Invoke(new MethodInvoker(delegate
|
||||||
// {
|
{
|
||||||
// //关闭请求数据计时器
|
//关闭请求数据计时器
|
||||||
// timerRequestData.Enabled = false;
|
timerRequestData.Enabled = false;
|
||||||
// timerRequestData.Stop();
|
timerRequestData.Stop();
|
||||||
// EveryDayLog.Write("定时器(定时获取数据)已关闭!");
|
EveryDayLog.Write("定时器(定时获取数据)已关闭!");
|
||||||
// }));
|
}));
|
||||||
|
|
||||||
// //timerSendJson.Enabled = false;
|
//timerSendJson.Enabled = false;
|
||||||
// //timerSendJson.Stop();
|
//timerSendJson.Stop();
|
||||||
|
|
||||||
// Others.g_flagReceive = false;
|
Others.g_flagReceive = false;
|
||||||
// continue;
|
flag = false;
|
||||||
//}
|
|
||||||
//else
|
continue;
|
||||||
//{
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
//实际接收到的有效字节数
|
//实际接收到的有效字节数
|
||||||
r = socketSend.Receive(buffer);
|
r = socketSend.Receive(buffer);
|
||||||
//}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < r; i++)
|
for (int i = 0; i < r; i++)
|
||||||
{
|
{
|
||||||
@ -726,9 +733,18 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
Others.g_dicSocket[Others.g_ip].Close();
|
Others.g_dicSocket[Others.g_ip].Close();
|
||||||
Others.g_dicSocket.Remove(Others.g_ip);
|
Others.g_dicSocket.Remove(Others.g_ip);
|
||||||
Others.g_flagReceive = false;
|
Others.g_flagReceive = false;
|
||||||
Console.WriteLine("ListenConnectError移除远程连接:" + Others.g_ip + "\r" + DateTime.Now);
|
flag = false;
|
||||||
|
Console.WriteLine("DataReceiveError移除远程连接:" + Others.g_ip + "\r" + DateTime.Now);
|
||||||
CallInvokeUIUpdate("UpdatelblState", "连接断开");
|
CallInvokeUIUpdate("UpdatelblState", "连接断开");
|
||||||
EveryDayLog.Write("ReceiveError移除远程连接:" + Others.g_ip);
|
EveryDayLog.Write("DataReceiveError移除远程连接:" + Others.g_ip);
|
||||||
|
|
||||||
|
this.Invoke(new MethodInvoker(delegate
|
||||||
|
{
|
||||||
|
//关闭请求数据计时器
|
||||||
|
timerRequestData.Enabled = false;
|
||||||
|
timerRequestData.Stop();
|
||||||
|
EveryDayLog.Write("定时器(定时获取数据)已关闭!");
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1582,13 +1598,13 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[82] == 0x00)
|
if (dataTemp[82] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal1 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal1 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime1 = 0;
|
overTime1++;
|
||||||
videoDisplayForm.lblTip.Visible = false;
|
videoDisplayForm.lblTip.Visible = false;
|
||||||
}
|
}
|
||||||
else if (dataTemp[82] == 0x01)
|
else if (dataTemp[82] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal1 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal1 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime1++;
|
overTime1 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[82] == 0x10)
|
else if (dataTemp[82] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1601,7 +1617,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
feedbackSignal1 = "打开驱动并且故障反馈为高电平";
|
feedbackSignal1 = "打开驱动并且故障反馈为高电平";
|
||||||
overTime1++;
|
overTime1++;
|
||||||
}
|
}
|
||||||
if(overTime1>0&& overTime1<3&& Others.g_socketSend!=null)
|
if (overTime1 > 0 && overTime1 < 3 && Others.g_socketSend != null)
|
||||||
{
|
{
|
||||||
otherSettingForm.rdoCloseLine.Checked = true;
|
otherSettingForm.rdoCloseLine.Checked = true;
|
||||||
otherSettingForm.cmbChooseLine.SelectedIndex = 0;
|
otherSettingForm.cmbChooseLine.SelectedIndex = 0;
|
||||||
@ -1613,7 +1629,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
otherSettingForm.cmbChooseLine.SelectedIndex = 0;
|
otherSettingForm.cmbChooseLine.SelectedIndex = 0;
|
||||||
otherSettingForm.btnSetLineState_Click(null, null);
|
otherSettingForm.btnSetLineState_Click(null, null);
|
||||||
}
|
}
|
||||||
if(overTime1>=3)
|
if (overTime1 >= 3)
|
||||||
{
|
{
|
||||||
videoDisplayForm.lblTip.Visible = true;
|
videoDisplayForm.lblTip.Visible = true;
|
||||||
}
|
}
|
||||||
@ -1621,12 +1637,12 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[83] == 0x00)
|
if (dataTemp[83] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal2 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal2 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime2 = 0;
|
overTime2++;
|
||||||
}
|
}
|
||||||
else if (dataTemp[83] == 0x01)
|
else if (dataTemp[83] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal2 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal2 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime2++;
|
overTime2 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[83] == 0x10)
|
else if (dataTemp[83] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1654,13 +1670,13 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[84] == 0x00)
|
if (dataTemp[84] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal3 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal3 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime3 = 0;
|
overTime3++;
|
||||||
sensorDataForm.lblTip1.Visible = false;
|
sensorDataForm.lblTip1.Visible = false;
|
||||||
}
|
}
|
||||||
else if (dataTemp[84] == 0x01)
|
else if (dataTemp[84] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal3 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal3 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime3++;
|
overTime3 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[84] == 0x10)
|
else if (dataTemp[84] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1685,7 +1701,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
otherSettingForm.cmbChooseLine.SelectedIndex = 2;
|
otherSettingForm.cmbChooseLine.SelectedIndex = 2;
|
||||||
otherSettingForm.btnSetLineState_Click(null, null);
|
otherSettingForm.btnSetLineState_Click(null, null);
|
||||||
}
|
}
|
||||||
if(overTime3>=3)
|
if (overTime3 >= 3)
|
||||||
{
|
{
|
||||||
sensorDataForm.lblTip1.Visible = true;
|
sensorDataForm.lblTip1.Visible = true;
|
||||||
}
|
}
|
||||||
@ -1693,13 +1709,13 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[85] == 0x00)
|
if (dataTemp[85] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal4 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal4 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime4 = 0;
|
overTime4++;
|
||||||
sonarDisplayForm.lblTip.Visible = false;
|
sonarDisplayForm.lblTip.Visible = false;
|
||||||
}
|
}
|
||||||
else if (dataTemp[85] == 0x01)
|
else if (dataTemp[85] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal4 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal4 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime4++;
|
overTime4 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[85] == 0x10)
|
else if (dataTemp[85] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1724,7 +1740,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
otherSettingForm.cmbChooseLine.SelectedIndex = 3;
|
otherSettingForm.cmbChooseLine.SelectedIndex = 3;
|
||||||
otherSettingForm.btnSetLineState_Click(null, null);
|
otherSettingForm.btnSetLineState_Click(null, null);
|
||||||
}
|
}
|
||||||
if(overTime4>=3)
|
if (overTime4 >= 3)
|
||||||
{
|
{
|
||||||
sonarDisplayForm.lblTip.Visible = true;
|
sonarDisplayForm.lblTip.Visible = true;
|
||||||
}
|
}
|
||||||
@ -1732,12 +1748,12 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[86] == 0x00)
|
if (dataTemp[86] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal5 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal5 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime5 = 0;
|
overTime5++;
|
||||||
}
|
}
|
||||||
else if (dataTemp[86] == 0x01)
|
else if (dataTemp[86] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal5 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal5 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime5++;
|
overTime5 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[86] == 0x10)
|
else if (dataTemp[86] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1765,13 +1781,13 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
if (dataTemp[87] == 0x00)
|
if (dataTemp[87] == 0x00)
|
||||||
{
|
{
|
||||||
feedbackSignal6 = "关闭驱动并且故障反馈为低电平";
|
feedbackSignal6 = "关闭驱动并且故障反馈为低电平";
|
||||||
overTime6 = 0;
|
overTime6++;
|
||||||
electDataForm.lblTip1.Visible = false;
|
electDataForm.lblTip1.Visible = false;
|
||||||
}
|
}
|
||||||
else if (dataTemp[87] == 0x01)
|
else if (dataTemp[87] == 0x01)
|
||||||
{
|
{
|
||||||
feedbackSignal6 = "关闭驱动并且故障反馈为高电平";
|
feedbackSignal6 = "关闭驱动并且故障反馈为高电平";
|
||||||
overTime6++;
|
overTime6 = 0;
|
||||||
}
|
}
|
||||||
else if (dataTemp[87] == 0x10)
|
else if (dataTemp[87] == 0x10)
|
||||||
{
|
{
|
||||||
@ -1796,7 +1812,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
otherSettingForm.cmbChooseLine.SelectedIndex = 5;
|
otherSettingForm.cmbChooseLine.SelectedIndex = 5;
|
||||||
otherSettingForm.btnSetLineState_Click(null, null);
|
otherSettingForm.btnSetLineState_Click(null, null);
|
||||||
}
|
}
|
||||||
if(overTime6>=3)
|
if (overTime6 >= 3)
|
||||||
{
|
{
|
||||||
electDataForm.lblTip1.Visible = true;
|
electDataForm.lblTip1.Visible = true;
|
||||||
}
|
}
|
||||||
@ -2015,6 +2031,37 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
chlorophyll = float.Parse(multiData1[4]);
|
chlorophyll = float.Parse(multiData1[4]);
|
||||||
ph = float.Parse(multiData1[5]);
|
ph = float.Parse(multiData1[5]);
|
||||||
|
|
||||||
|
if (conductivity < 10000)
|
||||||
|
{
|
||||||
|
conductivity += 20000;
|
||||||
|
}
|
||||||
|
else if (conductivity < 20000)
|
||||||
|
{
|
||||||
|
conductivity += 10000;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dissolvedoxygen <= 0)
|
||||||
|
{
|
||||||
|
dissolvedoxygen = rjy;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
rjy = dissolvedoxygen;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (temperature > 100)
|
||||||
|
{
|
||||||
|
temperature = wd;
|
||||||
|
}
|
||||||
|
else if (temperature < 10)
|
||||||
|
{
|
||||||
|
temperature = wd;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
wd = temperature;
|
||||||
|
}
|
||||||
|
|
||||||
if (ph < 7.8 || ph > 8.2)
|
if (ph < 7.8 || ph > 8.2)
|
||||||
{
|
{
|
||||||
ph = GetRandNum(78, 82) / 10f;
|
ph = GetRandNum(78, 82) / 10f;
|
||||||
@ -2353,7 +2400,6 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#region 文件传输
|
#region 文件传输
|
||||||
uint maxTransferContentNum = 200;
|
uint maxTransferContentNum = 200;
|
||||||
FileStream fs;
|
FileStream fs;
|
||||||
@ -3359,7 +3405,7 @@ namespace ZTTMS_Manage_YJ_20230104
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tbSetDataCycle.Text != null && tbSetDataCycle.Text!="")
|
if (tbSetDataCycle.Text != null && tbSetDataCycle.Text != "")
|
||||||
{
|
{
|
||||||
this.Invoke(new MethodInvoker(delegate
|
this.Invoke(new MethodInvoker(delegate
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,2 @@
|
|||||||
|
2023/8/1 11:05:01: 上位机软件已启动!
|
||||||
|
2023/8/1 11:05:27: 上位机软件已启动!
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
2023/8/3 9:29:02: 上位机软件已启动!
|
||||||
|
2023/8/3 13:42:59: 上位机软件已启动!
|
||||||
|
2023/8/3 14:31:43: 上位机软件已启动!
|
||||||
|
2023/8/3 14:43:57: 上位机软件已启动!
|
||||||
|
2023/8/3 15:01:55: 上位机软件已启动!
|
||||||
|
2023/8/3 15:44:27: 上位机软件已启动!
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
864bb2e30bc06b2bebfd25d9b248c5acd6db7e5a
|
24c3f5a658bf2f3f95e53df0a803e10584b6ded6
|
||||||
|
|||||||
@ -427,3 +427,79 @@ F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\
|
|||||||
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.CopyComplete
|
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.CopyComplete
|
||||||
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.exe
|
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.exe
|
||||||
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.pdb
|
F:\Code\yangjiang\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.pdb
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZTTMS_Manage_YJ_20230104.exe.config
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZTTMS_Manage_YJ_20230104.exe
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZTTMS_Manage_YJ_20230104.pdb
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\BouncyCastle.Crypto.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\FFmpeg.AutoGen.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Google.Protobuf.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\IdHelper.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\IdHelper.Zookeeper.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Compression.LZ4.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Compression.LZ4.Streams.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Hash.xxHash.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\MySql.Data.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Newtonsoft.Json.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Buffers.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Memory.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Numerics.Vectors.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Text.Encodings.Web.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Text.Json.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Threading.Tasks.Extensions.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.ValueTuple.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZooKeeperNetEx.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZstdNet.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\BouncyCastle.Crypto.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\FFmpeg.AutoGen.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Google.Protobuf.pdb
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Google.Protobuf.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\IdHelper.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\IdHelper.Zookeeper.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Compression.LZ4.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Compression.LZ4.Streams.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\K4os.Hash.xxHash.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Microsoft.Bcl.AsyncInterfaces.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\MySql.Data.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Newtonsoft.Json.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Buffers.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Memory.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Numerics.Vectors.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Text.Encodings.Web.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Text.Json.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.Threading.Tasks.Extensions.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\System.ValueTuple.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\ZooKeeperNetEx.xml
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\Interop.WMPLib.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\bin\Debug\AxInterop.WMPLib.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.AssemblyReference.cache
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.SuggestedBindingRedirects.cache
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\Interop.WMPLib.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\AxInterop.WMPLib.dll
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.ResolveComReference.cache
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.BindingDeviceForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.CloseBoxForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.ElectDataForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.FileAcquisitionForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.MainForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.MessageBoxForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.NetworkPortConfigurationForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.NetworkPortSettingForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.OLForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.OtherSettingForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.Properties.Resources.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.RealTimeDataForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.RemoteUpgradeForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.SensorDataForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.SerialPortSettingForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.SerialPortConfigurationForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.SonarDisplayForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.StatusInfoDataForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.VideoDisplayForm.resources
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.GenerateResource.cache
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.CoreCompileInputs.cache
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.csproj.CopyComplete
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.exe
|
||||||
|
F:\Code\yangjiang\20221101_YJHS_upperpc\ZTTMS_Manage_YJ_20230104_nosave_V1.0\ZTTMS_Manage_YJ_20230104\obj\Debug\ZTTMS_Manage_YJ_20230104.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user