using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// GoodInfo Data Structure.
///
[Serializable]
public class GoodInfo : AopObject
{
///
/// 商品的编号
///
[XmlElement("goods_id")]
public string GoodsId { get; set; }
///
/// 商品名称
///
[XmlElement("goods_name")]
public string GoodsName { get; set; }
///
/// 设备中该商品的剩余数量
///
[XmlElement("quantity")]
public string Quantity { get; set; }
///
/// 商品重量,单位克
///
[XmlElement("weight")]
public string Weight { get; set; }
}
}