40 lines
897 B
C#
40 lines
897 B
C#
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; }
|
|
|
|
}
|
|
}
|