using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiSalesKbassetStuffProduceqrcodeBatchqueryModel Data Structure. /// [Serializable] public class KoubeiSalesKbassetStuffProduceqrcodeBatchqueryModel : AopObject { /// /// 口碑批次号 /// [JsonProperty("batch_id")] public string BatchId { get; set; } /// /// 每页容量,最小1,最大100 /// [JsonProperty("page_size")] public string PageSize { get; set; } /// /// 生产单号 /// [JsonProperty("produce_order_id")] public string ProduceOrderId { get; set; } } }