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.

33 lines
698 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Shentun.WebPeis.Models;
  4. /// <summary>
  5. /// 退费支付方式
  6. /// </summary>
  7. public partial class ChargeBackPay
  8. {
  9. public Guid ChargeBackPayId { get; set; }
  10. public Guid ChargeBackId { get; set; }
  11. /// <summary>
  12. /// 支付方式ID
  13. /// </summary>
  14. public string PayModeId { get; set; } = null!;
  15. /// <summary>
  16. /// 退费金额
  17. /// </summary>
  18. public decimal BackMoeny { get; set; }
  19. /// <summary>
  20. /// 会员卡ID
  21. /// </summary>
  22. public Guid? CardBillId { get; set; }
  23. public string? ConcurrencyStamp { get; set; }
  24. public virtual ChargeBack ChargeBack { get; set; } = null!;
  25. }