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.
|
|
using System;using System.Collections.Generic;
namespace Shentun.WebPeis.Models;
/// <summary>
/// 退费支付方式
/// </summary>
public partial class ChargeBackPay{ public Guid ChargeBackPayId { get; set; }
public Guid ChargeBackId { get; set; }
/// <summary>
/// 支付方式ID
/// </summary>
public string PayModeId { get; set; } = null!;
/// <summary>
/// 退费金额
/// </summary>
public decimal BackMoeny { get; set; }
/// <summary>
/// 会员卡ID
/// </summary>
public Guid? CardBillId { get; set; }
public string? ConcurrencyStamp { get; set; }
public virtual ChargeBack ChargeBack { get; set; } = null!;}
|