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