36 lines
731 B
C#
36 lines
731 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AccessProduceQrcode Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AccessProduceQrcode : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 口碑码批次号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("batch_id")]
|
||
|
|
public string BatchId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 码url
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("core_url")]
|
||
|
|
public string CoreUrl { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 生产单号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("produce_order_id")]
|
||
|
|
public string ProduceOrderId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 二维码编码
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("qrcode")]
|
||
|
|
public string Qrcode { get; set; }
|
||
|
|
}
|
||
|
|
}
|