NewGaoKaoApi/PaymentSDK/AliPay/Domain/PrintModel.cs

43 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}