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