-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
615 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...bp.WeChat.Pay/Services/BasicPayment/JSPayment/Models/QueryOrderByOutTradeNumberRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
using Newtonsoft.Json; | ||
|
||
namespace EasyAbp.Abp.WeChat.Pay.Services.BasicPayment.JSPayment.Models; | ||
|
||
public class QueryOrderByOutTradeNumberRequest | ||
{ | ||
/// <summary> | ||
/// 直连商户号。 | ||
/// </summary> | ||
/// <remarks> | ||
/// 直连商户的商户号,由微信支付生成并下发。 | ||
/// </remarks> | ||
/// <example>示例值: 1230000109。</example> | ||
[JsonProperty("mchid")] | ||
[Required] | ||
[StringLength(32, MinimumLength = 1)] | ||
public string MchId { get; set; } | ||
|
||
/// <summary> | ||
/// 商户订单号。 | ||
/// </summary> | ||
/// <remarks> | ||
/// 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母_-|*@ ,且在同一个商户号下唯一。 | ||
/// </remarks> | ||
/// <example>示例值: 1217752501201407033233368018。</example> | ||
[JsonProperty("out_trade_no")] | ||
[Required] | ||
[StringLength(32, MinimumLength = 6)] | ||
public string OutTradeNo { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.