【新增】实现支付宝小程序适配。

This commit is contained in:
jianweie
2024-04-22 23:04:58 +08:00
parent 8a4fe681cb
commit a6ad9274e1
53 changed files with 13032 additions and 107 deletions

View 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; }
}
}