新增微信公众号功能

This commit is contained in:
不做码农
2023-07-19 07:29:49 +08:00
parent 946f4a6de9
commit e496d4095b
6 changed files with 191 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
namespace ZR.Common.Model
{
public class WxTokenResult
{
/// <summary>
/// 0、正常
/// </summary>
public int errcode { get; set; }
public string errmsg { get; set; }
public string access_token { get; set; }
public string ticket { get; set; }
}
}