Sen descrición

wuhb b97258d0d3 升版本 hai 2 días
docs 2465b3c6b7 ICE待办 hai 2 meses
sql bf56cf7e7b 部门编码 hai 3 meses
ygtx-admin 5990946eff 升版本 hai 3 días
ygtx-common 12994c02c9 更换包 hai 2 meses
ygtx-framework 1b02393e3b 升级配置 hai 2 meses
ygtx-generator 4f25a51f0f all hai 5 meses
ygtx-gxt b97258d0d3 升版本 hai 2 días
ygtx-quartz 4f25a51f0f all hai 5 meses
ygtx-system 2d617a4e68 编码规则修改 hai 2 meses
ygtx-ui 9f19ab1e97 驾驶舱个人-排名查询参数 hai 4 días
ygtx-worklog 4a9fa97839 项目管理 hai 5 meses
.gitignore 4f25a51f0f all hai 5 meses
LICENSE 4f25a51f0f all hai 5 meses
README.md 097cccedf1 版本更新 hai 4 meses
pom.xml 1fb96007bf 负责人查询添加部门、姓名排序 hai 4 meses
ry.bat 4f25a51f0f all hai 5 meses
ry.sh 4f25a51f0f all hai 5 meses

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