mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:53:25 +08:00
【新增】实现支付宝小程序适配。
This commit is contained in:
35
CoreCms.Net.Model/FromBody/FMAliPost.cs
Normal file
35
CoreCms.Net.Model/FromBody/FMAliPost.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CoreCms.Net.Model.FromBody
|
||||
{
|
||||
/// <summary>
|
||||
/// 微信小程序登录解码手机号码
|
||||
/// </summary>
|
||||
public class FMAliLoginDecryptPhoneNumber
|
||||
{
|
||||
/// <summary>
|
||||
/// 响应报文数据(待解码)
|
||||
/// </summary>
|
||||
public string encryptedData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sign
|
||||
/// </summary>
|
||||
public string sign { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝用户序列(也是前端缓存的用户编码)
|
||||
/// </summary>
|
||||
public string sessionAuthId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 推荐码
|
||||
/// </summary>
|
||||
public int invitecode { get; set; } = 0;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user