-
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.
Browse files
Browse the repository at this point in the history
订单页path信息 单独设置
- Loading branch information
Showing
4 changed files
with
308 additions
and
0 deletions.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
src/Senparc.Weixin.Open/Senparc.Weixin.Open/WxaAPIs/SecurityJson/ApplySetOrderPathInfo.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,76 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2022 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 | ||
文件名:ApplySetOrderPathInfo.cs | ||
文件功能描述:申请设置订单页 path 信息 | ||
创建标识:mojinxun - 20230207 | ||
----------------------------------------------------------------*/ | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace Senparc.Weixin.Open.WxaAPIs | ||
{ | ||
/// <summary> | ||
/// 申请设置订单页 path 信息 | ||
/// </summary> | ||
public class ApplySetOrderPathInfo | ||
{ | ||
/// <summary> | ||
/// 订单页path | ||
/// </summary> | ||
public string path { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的图片url,审核版会显示 | ||
/// </summary> | ||
public List<string> img_list { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的视频url,审核版会显示 | ||
/// </summary> | ||
public string video { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试账号,审核版会显示 | ||
/// </summary> | ||
public string test_account { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试密码,审核版会显示 | ||
/// </summary> | ||
public string test_pwd { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试备注,审核版会显示 | ||
/// </summary> | ||
public string test_remark { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的批量的appid | ||
/// </summary> | ||
public List<string> appid_list { get; set; } | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
...c.Weixin.Open/Senparc.Weixin.Open/WxaAPIs/SecurityJson/ApplySetOrderPathInfoJsonResult.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,49 @@ | ||
#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) 2020 Senparc | ||
文件名:ApplySetOrderPathInfoJsonResult.cs | ||
文件功能描述:申请设置订单页path信息结果 | ||
创建标识:mojinxun - 20230207 | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.Weixin.Entities; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.Open.WxaAPIs | ||
{ | ||
/// <summary> | ||
/// 申请设置订单页path信息结果 | ||
/// </summary> | ||
[Serializable] | ||
public class ApplySetOrderPathInfoJsonResult : WxJsonResult | ||
{ | ||
|
||
} | ||
} |
97 changes: 97 additions & 0 deletions
97
...enparc.Weixin.Open/Senparc.Weixin.Open/WxaAPIs/SecurityJson/GetOrderPathInfoJsonResult.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,97 @@ | ||
#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) 2022 Senparc | ||
文件名:GetOrderPathInfoJsonResult.cs | ||
文件功能描述:获取订单页 path 信息结果 | ||
创建标识:mojinxun - 20230207 | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.Weixin.Entities; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.Open.WxaAPIs | ||
{ | ||
/// <summary> | ||
/// 获取订单页 path 信息结果 | ||
/// </summary> | ||
[Serializable] | ||
public class GetOrderPathInfoJsonResult : WxJsonResult | ||
{ | ||
/// <summary> | ||
/// 订单页 path 信息 | ||
/// </summary> | ||
public GetOrderPathInfoMsg msg { get; set; } | ||
} | ||
|
||
[Serializable] | ||
public class GetOrderPathInfoMsg | ||
{ | ||
/// <summary> | ||
/// 订单页path | ||
/// </summary> | ||
public string path { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的图片url,审核版会显示 | ||
/// </summary> | ||
public List<string> img_list { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的视频url,审核版会显示 | ||
/// </summary> | ||
public string video { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试账号,审核版会显示 | ||
/// </summary> | ||
public string test_account { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试密码,审核版会显示 | ||
/// </summary> | ||
public string test_pwd { get; set; } | ||
|
||
/// <summary> | ||
/// 申请提交的测试备注,审核版会显示 | ||
/// </summary> | ||
public string test_remark { get; set; } | ||
|
||
/// <summary> | ||
/// 订单页 path 状态,见其他说明 | ||
/// </summary> | ||
public int status { get; set; } | ||
|
||
/// <summary> | ||
/// 申请时间 | ||
/// </summary> | ||
public long apply_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