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.

31 lines
819 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Shentun.WebPeis.Models;
  4. public partial class ChargeBack
  5. {
  6. public Guid ChargeBackId { get; set; }
  7. public Guid ChargeId { get; set; }
  8. public Guid? SettleAccountId { get; set; }
  9. public DateTime? SettleTime { get; set; }
  10. public string? ConcurrencyStamp { get; set; }
  11. public DateTime CreationTime { get; set; }
  12. public Guid CreatorId { get; set; }
  13. public DateTime LastModificationTime { get; set; }
  14. public Guid LastModifierId { get; set; }
  15. public virtual Charge Charge { get; set; } = null!;
  16. public virtual ICollection<ChargeBackPay> ChargeBackPays { get; set; } = new List<ChargeBackPay>();
  17. public virtual ICollection<ChargeBakAsbitem> ChargeBakAsbitems { get; set; } = new List<ChargeBakAsbitem>();
  18. }