31 lines
678 B
C#
31 lines
678 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KdsPrinterModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KdsPrinterModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 打印机设备Id
|
|
/// </summary>
|
|
[XmlElement("device_id")]
|
|
public string DeviceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印机名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印机id
|
|
/// </summary>
|
|
[XmlElement("printer_id")]
|
|
public string PrinterId { get; set; }
|
|
}
|
|
}
|