using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoEprintPrinterAddModel Data Structure. /// [Serializable] public class AlipayEcoEprintPrinterAddModel : AopObject { /// /// 应用ID /// [XmlElement("client_id")] public string ClientId { get; set; } /// /// 应用Secret /// [XmlElement("client_secret")] public string ClientSecret { get; set; } /// /// 应用访问凭证 /// [XmlElement("eprint_token")] public string EprintToken { get; set; } /// /// 终端号 /// [XmlElement("machine_code")] public string MachineCode { get; set; } /// /// 终端秘钥 /// [XmlElement("msign")] public string Msign { get; set; } /// /// 绑定手机号 /// [XmlElement("phone")] public string Phone { get; set; } /// /// 打印机名称 /// [XmlElement("print_name")] public string PrintName { get; set; } } }