using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// GoodsComponent Data Structure.
///
[Serializable]
public class GoodsComponent : AopObject
{
///
/// 货品code
///
[XmlElement("goods_code")]
public string GoodsCode { get; set; }
///
/// 货品名称
///
[XmlElement("goods_name")]
public string GoodsName { get; set; }
///
/// 组成数量
///
[XmlElement("quantity")]
public string Quantity { get; set; }
}
}