37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// HelloBikePriceCondition Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class HelloBikePriceCondition : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 算式左侧优惠卡类型,枚举值为 mcard,qcard,hycard,ycard,tcard
|
||
/// </summary>
|
||
[XmlElement("card_type_left")]
|
||
public string CardTypeLeft { get; set; }
|
||
|
||
/// <summary>
|
||
/// 算式右侧优惠卡类型,枚举值为 mcard,qcard,hycard,ycard,tcard
|
||
/// </summary>
|
||
[XmlElement("card_type_right")]
|
||
public string CardTypeRight { get; set; }
|
||
|
||
/// <summary>
|
||
/// 算式左侧系数,字符串表示的浮点数,保留5位小数
|
||
/// </summary>
|
||
[XmlElement("coefficient_left")]
|
||
public string CoefficientLeft { get; set; }
|
||
|
||
/// <summary>
|
||
/// 算式右侧系数,字符串表示的浮点数,保留5位小数
|
||
/// </summary>
|
||
[XmlElement("coefficient_right")]
|
||
public string CoefficientRight { get; set; }
|
||
}
|
||
}
|