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