2025-04-24 18:31:27 +08:00

69 lines
1.7 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 Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.MemberRecharge
{
/// <summary>
/// 保存会员充值
/// </summary>
public class MemberRechargeAct
{
/// <summary>
/// Desc:付款的金额
/// </summary>
[DisplayName("付款的金额")]
public decimal Value { get; set; }
/// <summary>
/// Desc:支付方式。0=现金1=银行卡非对接11=支付宝12=微信,21=美团 ,25=抖音。
/// </summary>
[DisplayName("支付方式")]
public int? PayMode { get; set; }
/// <summary>
/// Desc:充值的门店
/// </summary>
[DisplayName("充值的门店")]
public Guid? ShopID { get; set; }
/// <summary>
/// 是否赠送 1 赠送 0 不送
/// </summary>
public int? IfHandsel { get; set; }
/// <summary>
/// 会员ID
/// </summary>
public Guid? MemberId { get; set; }
/// <summary>
/// Desc:赠送的金额 IfHandsel=1时才赠送有效
/// </summary>
public decimal PresentAmount { get; set; }
}
public class RechargePresentAmountAct
{
/// <summary>
/// Desc:充值的门店
/// </summary>
[DisplayName("充值的门店")]
public Guid? ShopID { get; set; }
/// <summary>
/// Desc:付款的金额
/// </summary>
[DisplayName("付款的金额")]
public decimal Value { get; set; }
}
}