Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/Sale.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
889 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// Sale Data Structure.
/// </summary>
[Serializable]
public class Sale : AopObject
{
/// <summary>
/// 促销描述内容,有活动的情况下必填
/// </summary>
[JsonProperty("describe")]
public string Describe { get; set; }
/// <summary>
/// 促销活动结束时间,有活动的情况下必填
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 促销活动开始时间,有活动的情况下必填
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 活动状态0有效1停用默认状态0有效。有活动的情况下必填
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}