NewGaoKaoApi/PaymentSDK/AliPay/Domain/WorkDetail.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>
/// WorkDetail Data Structure.
/// </summary>
[Serializable]
public class WorkDetail : AopObject
{
/// <summary>
/// 批次编号
/// </summary>
[XmlElement("batch_code")]
public string BatchCode { get; set; }
/// <summary>
/// 货品过期日期
/// </summary>
[XmlElement("expire_date")]
public string ExpireDate { get; set; }
/// <summary>
/// 扩展字段json格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 货品编号
/// </summary>
[XmlElement("goods_code")]
public string GoodsCode { get; set; }
/// <summary>
/// 库存类型ZP=正品, CC=残次, JS=机损, XS=箱损, 默认为ZP
/// </summary>
[XmlElement("inventory_type")]
public string InventoryType { get; set; }
/// <summary>
/// 价格,单位元,两位小数
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
/// <summary>
/// 货品生产日期
/// </summary>
[XmlElement("production_date")]
public string ProductionDate { get; set; }
/// <summary>
/// 实际作业数量
/// </summary>
[XmlElement("quantity")]
public long Quantity { get; set; }
}
}