NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringKmsBakingBatc...

33 lines
884 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiCateringKmsBakingBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringKmsBakingBatchqueryModel : AopObject
{
/// <summary>
/// 预测日期,目前只支持预测当天日期
/// </summary>
[XmlElement("forecast_date")]
public string ForecastDate { get; set; }
/// <summary>
/// 口碑门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 商品skuId数组结构目前批量最多只支持100个sku
/// </summary>
[XmlArray("sku_id")]
[XmlArrayItem("string")]
public List<string> SkuId { get; set; }
}
}