설명 없음

wuhb 097cccedf1 版本更新 4 달 전
.vscode 097cccedf1 版本更新 4 달 전
doc 3cb12d531f 流程 5 달 전
sql 3cb12d531f 流程 5 달 전
ygtx-admin 097cccedf1 版本更新 4 달 전
ygtx-common 097cccedf1 版本更新 4 달 전
ygtx-framework db2f98cbd0 APP去掉验证码 4 달 전
ygtx-generator 4f25a51f0f all 5 달 전
ygtx-gxt ddbb411c42 待办修改 4 달 전
ygtx-quartz 4f25a51f0f all 5 달 전
ygtx-system 506756b3ae 固定排序 4 달 전
ygtx-ui 097cccedf1 版本更新 4 달 전
ygtx-worklog 4a9fa97839 项目管理 5 달 전
.gitignore 4f25a51f0f all 5 달 전
LICENSE 4f25a51f0f all 5 달 전
README.md 097cccedf1 版本更新 4 달 전
pom.xml 1fb96007bf 负责人查询添加部门、姓名排序 4 달 전
ry.bat 4f25a51f0f all 5 달 전
ry.sh 4f25a51f0f all 5 달 전
维保工单模块说明.md a2abc681f6 工程创建 5 달 전

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, "标题", "内容");