-
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.
v13.7.5 添加 ShakeAroundApi.DeviceApplyStatus 接口
- Loading branch information
Showing
11 changed files
with
149 additions
and
9 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
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Senparc.Weixin.MP.BuildOutPut/.net4.5/Senparc.Weixin.Open.dll
Binary file not shown.
24 changes: 22 additions & 2 deletions
24
Senparc.Weixin.MP.BuildOutPut/.net4.5/Senparc.Weixin.QY.XML
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file modified
BIN
+512 Bytes
(100%)
Senparc.Weixin.MP.BuildOutPut/.net4.5/Senparc.Weixin.QY.dll
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
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
44 changes: 44 additions & 0 deletions
44
...P/Senparc.Weixin.MP/AdvancedAPIs/ShakeAround/ShakeAroundJson/GetDeviceStatusResultJson.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) 2016 Senparc | ||
文件名:GetDeviceStatusResultJson.cs | ||
文件功能描述:查询审核状态返回结果 | ||
创建标识:Senparc - 20160424 | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.Weixin.Entities; | ||
|
||
namespace Senparc.Weixin.MP.AdvancedAPIs.ShakeAround | ||
{ | ||
/// <summary> | ||
/// 查询审核状态返回结果 | ||
/// </summary> | ||
public class GetDeviceStatusResultJson : WxJsonResult | ||
{ | ||
public GetDeviceStatusData data { get; set; } | ||
} | ||
|
||
public class GetDeviceStatusData | ||
{ | ||
/// <summary> | ||
/// 提交申请的时间戳 | ||
/// </summary> | ||
public long apply_time { get; set; } | ||
/// <summary> | ||
/// 审核备注,包括审核不通过的原因 | ||
/// </summary> | ||
public string audit_comment { get; set; } | ||
/// <summary> | ||
/// 审核状态。0:审核未通过、1:审核中、2:审核已通过;审核会在三个工作日内完成 | ||
/// TODO:可以做成枚举 | ||
/// </summary> | ||
public int audit_status { get; set; } | ||
/// <summary> | ||
/// 确定审核结果的时间戳;若状态为审核中,则该时间值为0 | ||
/// </summary> | ||
public long audit_time { 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