41 lines
995 B
C#
41 lines
995 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Businesses.WorkProcess
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信 - 充值成功通知
|
|||
|
/// </summary>
|
|||
|
public class RechargeSuccessNotificationTemplate : NotificationTemplateBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 会员等级
|
|||
|
/// </summary>
|
|||
|
public string Level { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 会员卡号。默认:手机号码
|
|||
|
/// </summary>
|
|||
|
public string Card { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 充值金额。单位:元
|
|||
|
/// </summary>
|
|||
|
public decimal Amount { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 充值时间。格式化:yyyy-MM-dd HH:mm:ss
|
|||
|
/// </summary>
|
|||
|
public DateTime RechargeTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 账户余额
|
|||
|
/// </summary>
|
|||
|
public decimal Balance { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|