25 lines
701 B
C#
25 lines
701 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// Product Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class Product : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 油品编号。(可设置的油品编号名称:89#,92#,95#,98#,101#,10#,5#,0#,-10#,-20#,-35#,-50#)。
|
||
/// </summary>
|
||
[XmlElement("name")]
|
||
public string Name { get; set; }
|
||
|
||
/// <summary>
|
||
/// 油品价格(元/升),加油站列表页展示给用户。保留小数点后两位,单位元
|
||
/// </summary>
|
||
[XmlElement("price")]
|
||
public string Price { get; set; }
|
||
}
|
||
}
|