-
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 pull request #2983 from JeffreySu/Developer
Developer
- Loading branch information
Showing
15 changed files
with
327 additions
and
11 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
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
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
63 changes: 63 additions & 0 deletions
63
...Open/Senparc.Weixin.WxOpen/Entities/Request/Event/RequestMessageEvent_WxVerifyDispatch.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,63 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2023 Senparc | ||
文件名:RequestMessageEvent_AddExpressPath.cs | ||
文件功能描述:运单轨迹更新事件 | ||
创建标识:chinanhb - 20230529 | ||
----------------------------------------------------------------*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.WxOpen.Entities | ||
{ | ||
public class RequestMessageEvent_WxVerifyDispatch : RequestMessageEventBase,IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.wx_verify_dispatch; } | ||
} | ||
/// <summary> | ||
/// 微信认证审核机构 | ||
/// </summary> | ||
public string Provider { get; set; } | ||
|
||
/// <summary> | ||
/// 微信认证审核机构联系方式 | ||
/// </summary> | ||
public string Contact { get; set; } | ||
|
||
/// <summary> | ||
/// 微信认证派单时间 | ||
/// </summary> | ||
public long DispatchTime { get; set; } | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
...xOpen/Senparc.Weixin.WxOpen/Entities/Request/Event/RequestMessageEvent_WxVerifyPaySucc.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,53 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2023 Senparc | ||
文件名:RequestMessageEvent_AddExpressPath.cs | ||
文件功能描述:运单轨迹更新事件 | ||
创建标识:chinanhb - 20230529 | ||
----------------------------------------------------------------*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.WxOpen.Entities | ||
{ | ||
public class RequestMessageEvent_WxVerifyPaySucc : RequestMessageEventBase,IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.wx_verify_pay_succ; } | ||
} | ||
/// <summary> | ||
/// 微信认证订单ID | ||
/// </summary> | ||
public string OrderId { 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.