NewGaoKaoApi/PaymentSDK/AliPay/Domain/OutboundOrderLine.cs

61 lines
1.5 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// OutboundOrderLine Data Structure.
/// </summary>
[Serializable]
public class OutboundOrderLine : AopObject
{
/// <summary>
/// 批次编号
/// </summary>
[XmlElement("batch_code")]
public string BatchCode { get; set; }
/// <summary>
/// 货品过期日期
/// </summary>
[XmlElement("expire_date")]
public string ExpireDate { get; set; }
/// <summary>
/// 货品编码
/// </summary>
[XmlElement("goods_code")]
public string GoodsCode { get; set; }
/// <summary>
/// ZP("正品"),CC("残次"), JS("机损"),XS("箱损"),ZT("在途库存");
/// </summary>
[XmlElement("inventory_type")]
public string InventoryType { get; set; }
/// <summary>
/// 计划出库量
/// </summary>
[XmlElement("plan_quantity")]
public long PlanQuantity { get; set; }
/// <summary>
/// 价格(单位元保留2为小数)
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
/// <summary>
/// 货品生产日期
/// </summary>
[XmlElement("product_date")]
public string ProductDate { get; set; }
/// <summary>
/// 备注信息。
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
}
}