43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// PrintModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class PrintModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 设备ID
|
||
/// </summary>
|
||
[XmlElement("device_id")]
|
||
public string DeviceId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否启用
|
||
/// </summary>
|
||
[XmlElement("enable")]
|
||
public bool Enable { get; set; }
|
||
|
||
/// <summary>
|
||
/// 打印机名称
|
||
/// </summary>
|
||
[XmlElement("name")]
|
||
public string Name { get; set; }
|
||
|
||
/// <summary>
|
||
/// 打印机id
|
||
/// </summary>
|
||
[XmlElement("printer_id")]
|
||
public long PrinterId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 打印机类型(FRONT_DESK_PRINTER:前台打印机;LABEL_PRINTER:标签打印机;KITCHEN_PRINTER:厨房打印机)
|
||
/// </summary>
|
||
[XmlElement("printer_type")]
|
||
public string PrinterType { get; set; }
|
||
}
|
||
}
|