NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailWmsGoodssafetyi...

27 lines
714 B
C#
Raw Permalink 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>
/// KoubeiRetailWmsGoodssafetyinventoryBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsGoodssafetyinventoryBatchqueryModel : AopObject
{
/// <summary>
/// 货品编码限制最大查询数量1000
/// </summary>
[XmlArray("goods_codes")]
[XmlArrayItem("string")]
public List<string> GoodsCodes { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
[XmlElement("warehouse_code")]
public string WarehouseCode { get; set; }
}
}