49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataPrinterTaskSubmitModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayDataPrinterTaskSubmitModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 应用token
|
|
/// </summary>
|
|
[XmlElement("access_token")]
|
|
public string AccessToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应用id
|
|
/// </summary>
|
|
[XmlElement("client_id")]
|
|
public string ClientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应用秘钥
|
|
/// </summary>
|
|
[XmlElement("client_secret")]
|
|
public string ClientSecret { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印内容
|
|
/// </summary>
|
|
[XmlElement("content")]
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备sn号
|
|
/// </summary>
|
|
[XmlElement("device_sn")]
|
|
public string DeviceSn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单号
|
|
/// </summary>
|
|
[XmlElement("origin_id")]
|
|
public string OriginId { get; set; }
|
|
}
|
|
}
|