mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:53:25 +08:00
【新增】增加MySql.Data组件,防止出现Nlog新版mysql不写入的问题。
【优化】优化本地上传写入文件夹缺少反斜杠的问题。 【修复】修复appsetting.json微信公众号配置项命名错误的问题。 【新增】定时任务增加微信公众号获取JS-Token并且全局缓存功能。 【新增】增加微信公众号获取JS-SDK使用权限签名算法。 【新增】新增微信公众号【微信被动回复消息】功能,用于关于公众号提醒,微信聊天被动关键词回复等。 【新增】新增微信公众号【微信菜单管理】功能,用于管理公众号底部三列五横的链接。 【新增】新增微信公众号【消息推送】接口及业务处理。用于接收从微信公众号推送的事件交互。 【新增】新增微信公众号【授权鉴权跳转】功能,用于验证是否为微信公众号访问,及获取openid等信息。 【新增】新增微信公众号用户accressToekn存储机制。 【新增】新增微信公众号发送模板消息方法。 【新增】数据库新增【WeChatMessageResponse】【WeChatUserAccessToken】两个表,【CoreCmsUserWeChatInfo】增加【isSubscribe】是否关注字段。 【新增】商品品牌管理品牌logo增加原图上传 【新增】商品分类管理分类图片增加原图上传 【新增】新增最新后台左侧管理菜单目录脚本,完整数据库脚本备份新增最新商品商品示例。
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SKIT.FlurlHttpClient.Wechat.Api.Models;
|
||||
|
||||
namespace CoreCms.Net.Model.WeChatEntites
|
||||
{
|
||||
public class MenuFull_ButtonGroupForSkit
|
||||
{
|
||||
public List<CgibinMenuCreateRequest.Types.Button> button { get; set; }
|
||||
}
|
||||
}
|
||||
28
CoreCms.Net.Model/WeChatEntites/TmpMsgModel.cs
Normal file
28
CoreCms.Net.Model/WeChatEntites/TmpMsgModel.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CoreCms.Net.Model
|
||||
{
|
||||
public class TmpMsgModel
|
||||
{
|
||||
public string OpenId { get; set; }
|
||||
public string TemplateId { get; set; }
|
||||
public string First { get; set; }
|
||||
public string Keyword1 { get; set; } = string.Empty;
|
||||
|
||||
public string Keyword2 { get; set; } = string.Empty;
|
||||
public string Keyword3 { get; set; } = string.Empty;
|
||||
public string Keyword4 { get; set; } = string.Empty;
|
||||
public string Keyword5 { get; set; } = string.Empty;
|
||||
public string Keyword6 { get; set; } = string.Empty;
|
||||
public string Keyword7 { get; set; } = string.Empty;
|
||||
public string Keyword8 { get; set; } = string.Empty;
|
||||
public string Keyword9 { get; set; } = string.Empty;
|
||||
public string Keyword10 { get; set; } = string.Empty;
|
||||
public string Remark { get; set; } = string.Empty;
|
||||
public string Url { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user