NewGaoKaoApi/PaymentSDK/AliPay/Domain/Sale.cs

37 lines
1001 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// Sale Data Structure.
/// </summary>
[Serializable]
public class Sale : AopObject
{
/// <summary>
/// 促销描述内容,有活动的情况下必填
/// </summary>
[XmlElement("describe")]
public string Describe { get; set; }
/// <summary>
/// 促销活动结束时间,有活动的情况下必填
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 促销活动开始时间,有活动的情况下必填
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 活动状态0有效1停用默认状态0有效。有活动的情况下必填
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}