mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03: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:
@@ -19,6 +19,14 @@ namespace CoreCms.Net.Configuration
|
||||
/// </summary>
|
||||
public static readonly string AppConfigAppUrl = AppSettingsHelper.GetContent("AppConfig", "AppUrl");
|
||||
/// <summary>
|
||||
/// PC端地址
|
||||
/// </summary>
|
||||
public static readonly string AppConfigAppPcUrl = AppSettingsHelper.GetContent("AppConfig", "AppPcUrl");
|
||||
/// <summary>
|
||||
/// H5端地址
|
||||
/// </summary>
|
||||
public static readonly string AppConfigAppH5Url = AppSettingsHelper.GetContent("AppConfig", "AppH5Url");
|
||||
/// <summary>
|
||||
/// 系统接口地址
|
||||
/// </summary>
|
||||
public static readonly string AppConfigAppInterFaceUrl = AppSettingsHelper.GetContent("AppConfig", "AppInterFaceUrl");
|
||||
|
||||
@@ -3152,5 +3152,128 @@ namespace CoreCms.Net.Configuration
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region 公众号
|
||||
/// <summary>
|
||||
/// 公众号所属类型
|
||||
/// </summary>
|
||||
public enum WeChatSubscriberEnum
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 测试号
|
||||
/// </summary>
|
||||
[Description("测试号")]
|
||||
Test = 0,
|
||||
/// <summary>
|
||||
/// 个人订阅号
|
||||
/// </summary>
|
||||
[Description("公众号")]
|
||||
PersonalSubscriber = 1,
|
||||
/// <summary>
|
||||
/// 小程序
|
||||
/// </summary>
|
||||
[Description("小程序")]
|
||||
MiniProgram = 2
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 微信消息回复类型
|
||||
/// </summary>
|
||||
public enum WeChatReplyCategory
|
||||
{
|
||||
//文本
|
||||
[Description("文本")]
|
||||
Text = 1,
|
||||
//图文
|
||||
[Description("图文")]
|
||||
Image = 2,
|
||||
//语音
|
||||
[Description("语音")]
|
||||
Voice = 3,
|
||||
//相等,用于回复关键字
|
||||
[Description("相等")]
|
||||
Equal = 4,
|
||||
//包含,用于回复关键字
|
||||
[Description("包含")]
|
||||
Contain = 5
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 微信消息回复类型
|
||||
/// </summary>
|
||||
public enum WeChatReplyType
|
||||
{
|
||||
//文本
|
||||
[Description("文本")]
|
||||
Text = 1,
|
||||
//图文
|
||||
[Description("图文")]
|
||||
Image = 2,
|
||||
//语音
|
||||
//[Description("语音")]
|
||||
//Voice = 3
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 微信消息回复类型
|
||||
/// </summary>
|
||||
public enum WeChatReplyMatchKeyType
|
||||
{
|
||||
//相等,用于回复关键字
|
||||
[Description("相等")]
|
||||
Equal = 4,
|
||||
//包含,用于回复关键字
|
||||
[Description("包含")]
|
||||
Contain = 5
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 微信消息回复类型
|
||||
/// </summary>
|
||||
public enum WeChatRequestRuleEnum
|
||||
{
|
||||
/// <summary>
|
||||
/// 默认回复,没有处理的
|
||||
/// </summary>
|
||||
[Description("默认回复")]
|
||||
Default = 0,
|
||||
/// <summary>
|
||||
/// 关注回复
|
||||
/// </summary>
|
||||
[Description("关注回复")]
|
||||
Subscriber = 1,
|
||||
/// <summary>
|
||||
/// 文本回复
|
||||
/// </summary>
|
||||
[Description("文本回复")]
|
||||
Text = 2,
|
||||
/// <summary>
|
||||
/// 图片回复
|
||||
/// </summary>
|
||||
[Description("图片回复")]
|
||||
Image = 3,
|
||||
///// <summary>
|
||||
///// 语音回复
|
||||
///// </summary>
|
||||
[Description("语音回复")]
|
||||
Voice = 4,
|
||||
///// <summary>
|
||||
///// 视频回复
|
||||
///// </summary>
|
||||
//Video = 5,
|
||||
///// <summary>
|
||||
///// 超链接回复
|
||||
///// </summary>
|
||||
//Link = 6,
|
||||
///// <summary>
|
||||
///// LBS位置回复
|
||||
///// </summary>
|
||||
//Location = 7,
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user