Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/CampDetailInfo.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

66 lines
1.6 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CampDetailInfo Data Structure.
/// </summary>
[Serializable]
public class CampDetailInfo : AopObject
{
/// <summary>
/// 活动开始时间
/// </summary>
[JsonProperty("begin_time")]
public string BeginTime { get; set; }
/// <summary>
/// 业务id与bizType 一一对应biz_type为消费送biz_id为消费送活动id
/// </summary>
[JsonProperty("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 业务类型CONSUME_SEND消费送MRT_DISCOUNT:商户立减OBTAIN:通用领券
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 活动描述
/// </summary>
[JsonProperty("camp_desc")]
public string CampDesc { get; set; }
/// <summary>
/// 需要解析该json串title为标题details是描述多个detail需要换行
/// </summary>
[JsonProperty("camp_guide")]
public string CampGuide { get; set; }
/// <summary>
/// 活动结束时间
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 扩展字段信息用Map对象json串保存
/// </summary>
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 每人每日参与次数 -1为不限制
/// </summary>
[JsonProperty("win_limit_daily")]
public string WinLimitDaily { get; set; }
/// <summary>
/// 每人总参与次数 -1 为不限制
/// </summary>
[JsonProperty("win_limit_life")]
public string WinLimitLife { get; set; }
}
}