using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoEprintOrderNotifyModel Data Structure. /// [Serializable] public class AlipayEcoEprintOrderNotifyModel : AopObject { /// /// 签名 /// [XmlElement("eprint_sign")] public string EprintSign { get; set; } /// /// 终端号 /// [XmlElement("machine_code")] public string MachineCode { get; set; } /// /// 授权类型:0=自有应用授权;1=开放应用授权 /// [XmlElement("oauth_type")] public long OauthType { get; set; } /// /// 云平台订单ID /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 回调时间 /// [XmlElement("push_time")] public string PushTime { get; set; } /// /// 打印状态 -1=打印取消 0=打印命令发送成功 1=打印完成 2=打印异常 /// [XmlElement("state")] public long State { get; set; } } }