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