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

56 lines
1.3 KiB
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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CplifeNoticeDetail Data Structure.
/// </summary>
[Serializable]
public class CplifeNoticeDetail : AopObject
{
/// <summary>
/// 通告公告的具体内容
/// </summary>
[JsonProperty("content")]
public string Content { get; set; }
/// <summary>
/// 通知的下线时间.
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 通知公告中允许出现的图片列表。
/// </summary>
[JsonProperty("image_list")]
public List<CplifeNoticeImg> ImageList { get; set; }
/// <summary>
/// 通知的上线时间,该时刻之后,用户才能在支付宝客户端看到该通知。
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 通知是否置顶默认为false.
/// </summary>
[JsonProperty("stickied")]
public bool Stickied { get; set; }
/// <summary>
/// 通知(公告)的标题
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
/// <summary>
/// 通告公告的具体类型.通知“01” ,公告“02”
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}