Blame view

netcore/src/Modularity/Extend/NCC.Extend.Entitys/Dto/AliPayEntity.cs 725 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  namespace NCC.Extend.Entitys;
  
  public class AliPayEntity
  {
      /// <summary>
      /// 商户订单号(必填)
      /// </summary>
      public string OutTradeNo { get; set; }
      /// <summary>
      /// 金额(必填)
      /// </summary>
      public decimal TotalAmount { get; set; }
  
      /// <summary>
      /// 订单标题
      /// </summary>
      public string Subject { get; set; }
  
      /// <summary>
      /// 可打折金额
      /// </summary>
      public decimal DiscountableAmount { get; set; } = 0;
  
      /// <summary>
      /// 订单附加信息。
      /// </summary>
      public string Body { get; set; }
  
      /// <summary>
      /// 买家支付宝用户唯一标识
      /// </summary>
      public string BuyerOpenId { get; set; }
  }