Commit e760c680 authored by gdlcf88's avatar gdlcf88

Added UserId to PaymentDto and PaymentEto

parent eef42759
......@@ -6,6 +6,8 @@ namespace EasyAbp.EShop.Payments.Payments.Dtos
{
public class PaymentDto : ExtensibleFullAuditedEntityDto<Guid>
{
public Guid UserId { get; set; }
public string PaymentMethod { get; set; }
public string ExternalTradingCode { get; set; }
......
......@@ -6,6 +6,8 @@ namespace EasyAbp.EShop.Payments.Payments
[Serializable]
public class PaymentEto
{
public Guid UserId { get; set; }
public Guid Id { get; set; }
public Guid? TenantId { get; set; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment