You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
620 B
26 lines
620 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CardRegisters
|
|
{
|
|
public class CardRegisterRechargeDto
|
|
{
|
|
/// <summary>
|
|
/// 会员卡ID
|
|
/// </summary>
|
|
public Guid CardRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
public string PayModeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 充值金额
|
|
/// </summary>
|
|
public decimal RechargeAmount { get; set; }
|
|
}
|
|
}
|