mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 20:09:49 +08:00
【新增】实现支付宝小程序适配。
This commit is contained in:
30
CoreCms.Net.Model/ViewModels/AliPay/AlipayEncryptDTO.cs
Normal file
30
CoreCms.Net.Model/ViewModels/AliPay/AlipayEncryptDTO.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CoreCms.Net.Model.ViewModels.AliPay
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝拉取解码手机号码
|
||||
/// </summary>
|
||||
public class AlipayEncryptDTO
|
||||
{
|
||||
/// <summary>
|
||||
/// 返回状态码
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 消息详情
|
||||
/// </summary>
|
||||
public string msg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 手机号码
|
||||
/// </summary>
|
||||
public string mobile { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user