37 lines
791 B
C#
37 lines
791 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus.RabbitMQ.Models
|
|
{
|
|
public class ReportDto
|
|
{
|
|
/// <summary>
|
|
/// 客服端标识
|
|
/// </summary>
|
|
public string ClientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客服端IP
|
|
/// </summary>
|
|
public string ClientIP { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客服端端口
|
|
/// </summary>
|
|
public int Port { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客服端报文
|
|
/// </summary>
|
|
public string MessageHexString { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备号
|
|
/// </summary>
|
|
public string DeviceNo { get; set; }
|
|
}
|
|
}
|