MeiSaiSiXieTongApi/MyCode.Project.Domain/Message/Request/Message/InvitationSuccessNotificationReq.cs
2025-04-24 18:31:27 +08:00

109 lines
3.0 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 System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.Message
{
/// <summary>
/// 邀请成功通知(接收对象是分享者)
/// </summary>
public class InvitationSuccessNotificationReq
{
/// <summary>
/// 受邀人
/// </summary>
public string Name { get; set; }
/// <summary>
/// 邀请奖励: 【优惠券金额】元权益金 (【店铺名称(分享哪家店铺显示哪家)】
/// </summary>
public string MsgString { get; set; }
/// <summary>
/// 邀请时间: 2019年12月29日11:07
/// </summary>
public string InvitationTime { get; set; }
/// <summary>
/// 温馨提示: 您的好友成功领取【活动名称】,使用后您可获得【优惠券金额】元【优惠券使用条件】代金券。
/// </summary>
public string Tips { get; set; }
/// <summary>
/// 发送对象的OPENID
/// </summary>
public string OpenId { get; set; }
}
/// <summary>
/// 优惠券领取成功通知(接收对象是受赠人)
/// </summary>
public class CouponClaimSuccessNotificationReq
{
/// <summary>
/// 优惠券名称:【活动名称】
/// </summary>
public string Name { get; set; }
/// <summary>
/// 有效期: 2019.12.1 - 2019.12.31
/// </summary>
public string InvitationTime { get; set; }
/// <summary>
/// 使用方式:至【门店名称(分享哪家显示哪家)】出示二维码核销使用
/// </summary>
public string MsgString { get; set; }
/// <summary>
/// 温馨提示: 请在有效期内到所属门店使用小程序BINF流行美活动页查看详情
/// </summary>
public string Tips { get; set; }
/// <summary>
/// 发送对象的OPENID
/// </summary>
public string OpenId { get; set; }
}
/// <summary>
/// 商品兑换成功通知(接收对象是分享者)
/// </summary>
public class ProductExchangeSuccessNotificationReq
{
/// <summary>
/// 商品名称:【活动名称】
/// </summary>
public string Name { get; set; }
/// <summary>
/// 成功兑换时间2019年12月30日 12:22:22
/// </summary>
public string InvitationTime { get; set; }
/// <summary>
/// 兑换门店:【门店名称】
/// </summary>
public string ShopName { get; set; }
/// <summary>
/// 备注:您的好友成功使用【活动名称】,【优惠券金额】元【优惠券使用条件】代金券。已经到账
/// </summary>
public string Note { get; set; }
/// <summary>
/// 发送对象的OPENID
/// </summary>
public string OpenId { get; set; }
}
}