初始化

This commit is contained in:
2025-11-20 16:20:04 +08:00
commit 4230fa4d27
777 changed files with 232488 additions and 0 deletions

39
Commonlib/TuBiao.cs Normal file
View File

@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Commonlib
{
public class TuBiao
{
public List<TRX> TX { get; set; }
public List<TRX> RX { get; set; }
public List<int> TX_EVERY_Hour { get; set; }
public List<int> RX_EVERY_Hour { get; set; }
public List<int> RTX_EVERY_Hour { get; set; }
}
public class TRX
{
public string name { get; set; }
public int value { get; set; }
}
public class _JieGuo
{
public string CreateTime { get; set; }
public string CommandType { get; set; }
public string SendOrReceive { get; set; }
}
public class JieGuo
{
public int Count { get; set; }
public string CommandType { get; set; }
public string SendOrReceive { get; set; }
}
}