mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03:25 +08:00
【优化】优化本地上传写入文件夹缺少反斜杠的问题。 【修复】修复appsetting.json微信公众号配置项命名错误的问题。 【新增】定时任务增加微信公众号获取JS-Token并且全局缓存功能。 【新增】增加微信公众号获取JS-SDK使用权限签名算法。 【新增】新增微信公众号【微信被动回复消息】功能,用于关于公众号提醒,微信聊天被动关键词回复等。 【新增】新增微信公众号【微信菜单管理】功能,用于管理公众号底部三列五横的链接。 【新增】新增微信公众号【消息推送】接口及业务处理。用于接收从微信公众号推送的事件交互。 【新增】新增微信公众号【授权鉴权跳转】功能,用于验证是否为微信公众号访问,及获取openid等信息。 【新增】新增微信公众号用户accressToekn存储机制。 【新增】新增微信公众号发送模板消息方法。 【新增】数据库新增【WeChatMessageResponse】【WeChatUserAccessToken】两个表,【CoreCmsUserWeChatInfo】增加【isSubscribe】是否关注字段。 【新增】商品品牌管理品牌logo增加原图上传 【新增】商品分类管理分类图片增加原图上传 【新增】新增最新后台左侧管理菜单目录脚本,完整数据库脚本备份新增最新商品商品示例。
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
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;
|
|
}
|
|
}
|