-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/Developer' into Developer-SM
- Loading branch information
Showing
7 changed files
with
206 additions
and
5 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
...xin.Open/Senparc.Weixin.Open/Entities/Request/RequestMessageOrderPathApplyResultNotify.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,44 @@ | ||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessage3rdWxaAuth.cs | ||
文件功能描述:小程序订单页设置申请通知 | ||
创建标识:mc7246 - 20240802 | ||
----------------------------------------------------------------*/ | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace Senparc.Weixin.Open | ||
{ | ||
/// <summary> | ||
/// 小程序订单页设置申请通知 | ||
/// </summary> | ||
public class RequestMessageOrderPathApplyResultNotify : RequestMessageBase | ||
{ | ||
public override RequestInfoType InfoType | ||
{ | ||
get { return RequestInfoType.order_path_apply_result_notify; } | ||
} | ||
|
||
/// <summary> | ||
/// 送审结果列表 | ||
/// </summary> | ||
public RequestMessageOrderPathApplyResultNotify_AppInfo list { get; set; } | ||
} | ||
|
||
public class RequestMessageOrderPathApplyResultNotify_AppInfo | ||
{ | ||
/// <summary> | ||
/// 申请的appid | ||
/// </summary> | ||
public string appid { get; set; } | ||
|
||
/// <summary> | ||
/// 送审结果,0 成功, 1 重复提审,-1 系统繁忙,-2 APPID非法 | ||
/// </summary> | ||
public int ret_code { get; set; } | ||
|
||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...xin.Open/Senparc.Weixin.Open/Entities/Request/RequestMessageOrderPathAuditResultNotify.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,62 @@ | ||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessage3rdWxaAuth.cs | ||
文件功能描述:小程序订单页设置审核结果通知 | ||
创建标识:mc7246 - 20240802 | ||
----------------------------------------------------------------*/ | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace Senparc.Weixin.Open | ||
{ | ||
/// <summary> | ||
/// 小程序订单页设置审核结果通知 | ||
/// </summary> | ||
public class RequestMessageOrderPathAuditResultNotify : RequestMessageBase | ||
{ | ||
public override RequestInfoType InfoType | ||
{ | ||
get { return RequestInfoType.order_path_audit_result_notify; } | ||
} | ||
|
||
/// <summary> | ||
/// 申请结果列表 | ||
/// </summary> | ||
public RequestMessageOrderPathAuditResultNotify_AppInfo list { get; set; } | ||
} | ||
|
||
public class RequestMessageOrderPathAuditResultNotify_AppInfo | ||
{ | ||
/// <summary> | ||
/// 申请的appid | ||
/// </summary> | ||
public string appid { get; set; } | ||
|
||
/// <summary> | ||
/// 审核单id | ||
/// </summary> | ||
public long audit_id { get; set; } | ||
|
||
/// <summary> | ||
/// 结果 4成功 | ||
/// </summary> | ||
public int status { get; set; } | ||
|
||
/// <summary> | ||
/// 申请时间 | ||
/// </summary> | ||
public long apply_time { get; set; } | ||
/// <summary> | ||
/// 审核时间 | ||
/// </summary> | ||
public long audit_time { get; set; } | ||
|
||
/// <summary> | ||
/// 结果说明 | ||
/// </summary> | ||
public string reason { 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
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
12 changes: 12 additions & 0 deletions
12
...in.Open/WxaAPIs/SecOrder/SecOrderJson/IsTradeManagementConfirmationCompletedJsonResult.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,12 @@ | ||
using Senparc.Weixin.Entities; | ||
|
||
namespace Senparc.Weixin.Open.WxaAPIs.SecOrder | ||
{ | ||
/// <summary> | ||
/// 查询小程序是否已完成交易结算管理确认 | ||
/// </summary> | ||
public class IsTradeManagementConfirmationCompletedJsonResult : WxJsonResult | ||
{ | ||
public bool completed { get; set; } | ||
} | ||
} |