Nessuna descrizione

ouyj 05e3d2e038 去除工单评分后的月度维修及维保工单数的数据更新 3 mesi fa
.vscode 097cccedf1 版本更新 4 mesi fa
docs 139a0fb074 文档 4 mesi fa
sql bf56cf7e7b 部门编码 4 mesi fa
ygtx-admin 8673cc4b2b 更换配置 3 mesi fa
ygtx-common 782daf884f 自动评分调整 3 mesi fa
ygtx-framework 4e38803d22 更换配置 3 mesi fa
ygtx-generator 4f25a51f0f all 6 mesi fa
ygtx-gxt 05e3d2e038 去除工单评分后的月度维修及维保工单数的数据更新 3 mesi fa
ygtx-quartz 4f25a51f0f all 6 mesi fa
ygtx-system 644c799e0c 月度工分汇总 3 mesi fa
ygtx-ui c6c668d773 缺陷修复 3 mesi fa
ygtx-worklog 4a9fa97839 项目管理 6 mesi fa
.gitignore 4f25a51f0f all 6 mesi fa
LICENSE 4f25a51f0f all 6 mesi fa
README.md 097cccedf1 版本更新 4 mesi fa
pom.xml 1fb96007bf 负责人查询添加部门、姓名排序 5 mesi fa
ry.bat 4f25a51f0f all 6 mesi fa
ry.sh 4f25a51f0f all 6 mesi fa

README.md

宇光同行工作汇报

个推推送服务集成说明

配置说明

application-dev.yml或相应环境配置文件中添加个推配置:

getui:
  enabled: true  # 是否启用个推服务
  app-id: xxxxxx  # 个推AppId
  app-key: xxxxxx  # 个推AppKey
  app-secret: xxxxxx  # 个推AppSecret
  master-secret: xxxxxx  # 个推MasterSecret

使用方法

// 推送消息给单个用户
GetuiTemplate.pushMessageToSingle("用户的CID", "标题", "内容");

// 推送消息给单个用户(带透传内容)
GetuiTemplate.pushMessageToSingle("用户的CID", "标题", "内容", "{\"type\":\"order\",\"id\":123}");

// 批量推送消息给多个用户
String[] cids = {"用户1的CID", "用户2的CID", "用户3的CID"};
GetuiTemplate.pushMessageToBatch(cids, "标题", "内容");