ShiRongWeChatOpenIdTask/MyCode.Project.Domain/Businesses/WorkProcess/RechargeSuccessNotificationTemplate.cs
2025-04-21 14:10:27 +08:00

41 lines
995 B
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.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; }
}
}