Browse Source

更新配置文件的开关

tags/v1.0.1-224.11141
wangyi15124 2 years ago
parent
commit
fc1c07ebcd
3 changed files with 15 additions and 16 deletions
  1. +11
    -11
      config/application.properties
  2. +0
    -1
      config/config.properties
  3. +4
    -4
      src/main/java/com/stonedt/intelligence/constant/WechatConstant.java

+ 11
- 11
config/application.properties View File

@@ -13,35 +13,35 @@ insertnewwords.url = http://192.168.71.84:8490/newDic/insert
# 定时任务开关(0:关闭,1:开启)
# 监测分析
schedule.analysis.open=0
schedule.analysis.open=1
#schedule.analysispt.cron=0 0 22 * * ?
schedule.analysispt.cron=0 0/1 * * * ?
# 监测分析pt
schedule.analysispt.open=0
schedule.analysispt.open=1
# 声量监测
# 声量监测(0:关闭,1:开启)
schedule.volume.open=0
# 声量监测pt
# 声量监测pt(0:关闭,1:开启)
schedule.volumept.open=0
# 数据报告-日报列表
# 数据报告-日报列表(0:关闭,1:开启)
schedule.dayreport.open=0
# 数据报告-周报列表
# 数据报告-周报列表(0:关闭,1:开启)
schedule.weekreport.open=0
# 数据报告-月报列表
# 数据报告-月报列表(0:关闭,1:开启)
schedule.monthreport.open=0
# 数据报告-数据
# 数据报告-数据(0:关闭,1:开启)
schedule.report.open=0
# 预警
schedule.warning.open=0
# 预警(0:关闭,1:开启)
schedule.warning.open=1
#微信推送
schedule.wechat.open=0
#微信定时生成二维码
schedule.wechatqrcode.open=0
#热点
#热点(0:关闭,1:开启)
es.hot.open=1


+ 0
- 1
config/config.properties View File

@@ -1,3 +1,2 @@
# 服务器文件路径
product.manual.path=C:/Users/zhx/Desktop/新版本舆情产品手册V1.0.pdf

+ 4
- 4
src/main/java/com/stonedt/intelligence/constant/WechatConstant.java View File

@@ -7,19 +7,19 @@ package com.stonedt.intelligence.constant;
public class WechatConstant {
// appid
public final static String AppID = "wx27ae60471bc5516f";
public final static String AppID = "*************";
//AppSecret
public final static String AppSecret = "18f16a4529395014b66cb8394aeddaf9";
public final static String AppSecret = "******************";
//获取AccessToken接口
public final static String api_wechat_AccessToken = "18f16a4529395014b66cb8394aeddaf9";
public final static String api_wechat_AccessToken = "************************";
//发送模板消息
public final static String api_wechat_template = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wx27ae60471bc5516f&secret=18f16a4529395014b66cb8394aeddaf9";
//获取二维码ticket
public final static String api_wechat_qrcode = "18f16a4529395014b66cb8394aeddaf9";
public final static String api_wechat_qrcode = "***********************";
//模板id
public final static String api_wechat_template_id = "Yr-BmtZJctEJSgfq2GfqPnb44iLc6exhesUuUcrasdk";


Loading…
Cancel
Save