调整员工入驻审核发送通知接口

This commit is contained in:
yangjun 2025-09-17 08:37:57 +08:00
parent 05d5fdc117
commit 587be14c11
2 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class NuEmployeesAdvisoryInfoServiceImpl extends ServiceImpl<NuEmployeesA
Map<String, Object> data = new HashMap<>();
com.alibaba.fastjson.JSONObject orgInfo = sysBaseAPI.getOrgInfo(dto.getOrgCode());
String companyName = orgInfo.getString("departName");
String content = companyName + "员工入驻审核结果";
String content = companyName + "审核结果";
String auditStatus = "";
if (StringUtils.equals("2", dto.getAuditStatus())) {
auditStatus = "审核通过";

View File

@ -24,6 +24,7 @@ public class TemplateMessageSender {
String url = String.format(SEND_TEMPLATE_MSG_URL, accessToken);
JSONObject json = new JSONObject();
System.out.println("touser----------------------------->"+openId);
json.put("touser", openId);
json.put("template_id", templateId);
json.put("page", page);
@ -35,6 +36,7 @@ public class TemplateMessageSender {
dataJson.put(entry.getKey(), valueJson);
}
json.put("data", dataJson);
System.out.println("json----------------------------->"+json.toString());
OkHttpClient client = new OkHttpClient();
RequestBody body = RequestBody.create(json.toString(), MediaType.get("application/json"));