34 lines
921 B
C#
34 lines
921 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
using System.Collections.Concurrent;
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
public class YUANZI_TongJi
|
|||
|
|
{
|
|||
|
|
public static long TotalReceiveCount = 0;
|
|||
|
|
public static long TotalErrorPackageReceiveCount = 0;
|
|||
|
|
}
|
|||
|
|
public class UDPPackageCount
|
|||
|
|
{
|
|||
|
|
public long Count { get; set; }
|
|||
|
|
public ConcurrentDictionary<string, long> FenLei { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class UDPPackage
|
|||
|
|
{
|
|||
|
|
public string CommandType { get; set; }
|
|||
|
|
public long TotalCount { get; set; }
|
|||
|
|
public ConcurrentDictionary<string, long> FenLei { get; set; }
|
|||
|
|
public ConcurrentDictionary<string, string> ExtraData { get; set; }
|
|||
|
|
public string RemoveTime { get; set; }
|
|||
|
|
}
|
|||
|
|
public class Block_NameList
|
|||
|
|
{
|
|||
|
|
public string HotelCode { get; set; }
|
|||
|
|
public List<string> HostNumberList;
|
|||
|
|
}
|
|||
|
|
}
|