56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|