feat: 添加微信应用模块,支持微信支付及微信小程序对接(功能产品已上线验证)

This commit is contained in:
橙子
2023-09-03 11:22:19 +08:00
parent efee87e4c5
commit c2ca0b1f29
21 changed files with 1264 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Module.WeChat.Model
{
public class UnlimitedQRCodeReponse
{
}
public class UnlimitedQRCodeRequest
{
public UnlimitedQRCodeRequest(EnvVersionEnum unlimitedQRCodeEnum) {
env_version = unlimitedQRCodeEnum.ToString();
}
public bool check_path { get; set; } = false;
public string page { get; set; }
public string scene { get; set; }
public string env_version { get; set; }
}
public enum EnvVersionEnum
{
/// <summary>
/// 正式版本
/// </summary>
[Description("正式版本")]
release,
/// <summary>
/// 体验版本
/// </summary>
[Description("体验版本")]
trial,
/// <summary>
/// 开发版本
/// </summary>
[Description("开发版本")]
develop
}
}