Aucune description

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

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