using System.Text.Json.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AccessProduceQrcode Data Structure.
///
public class AccessProduceQrcode : AlipayObject
{
///
/// 口碑码批次号
///
[JsonPropertyName("batch_id")]
public string BatchId { get; set; }
///
/// 码url
///
[JsonPropertyName("core_url")]
public string CoreUrl { get; set; }
///
/// 生产单号
///
[JsonPropertyName("produce_order_id")]
public string ProduceOrderId { get; set; }
///
/// 二维码编码
///
[JsonPropertyName("qrcode")]
public string Qrcode { get; set; }
}
}