forked from JeffreySu/WeiXinMPSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2、新增小程序认证年审事件接口
- Loading branch information
Showing
5 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
src/Senparc.Weixin.Open/Senparc.Weixin.Open/Entities/Request/RequestMessage3rdWxaWxVerify.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,35 @@ | ||
/*---------------------------------------------------------------- | ||
Copyright (C) 2023 Senparc | ||
文件名:RequestMessage3rdWxaAuth.cs | ||
文件功能描述:小程序认证年审和过期能力限制提醒(过期当天&过期30天&过期60天) | ||
创建标识:Senparc - 20231211 | ||
----------------------------------------------------------------*/ | ||
|
||
namespace Senparc.Weixin.Open | ||
{ | ||
public class RequestMessage3rdWxaWxVerify : RequestMessageBase | ||
{ | ||
public override RequestInfoType InfoType | ||
{ | ||
get { return RequestInfoType.notify_3rd_wxa_wxverify; } | ||
} | ||
/// <summary> | ||
/// 小程序appid | ||
/// </summary> | ||
public string appid { get; set; } | ||
|
||
/// <summary> | ||
/// 认证过期时间戳(秒) | ||
/// </summary> | ||
public long expired { get; set; } | ||
|
||
/// <summary> | ||
/// 提醒消息内容 | ||
/// </summary> | ||
public string message { 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