接口文件
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user