This commit is contained in:
hucs
2024-08-19 17:53:08 +08:00
parent c75809a8ce
commit 123e751fe3
2 changed files with 2 additions and 2 deletions

View File

@@ -211,7 +211,7 @@ public class WxClerkController {
entity.setClerkId(clerkId);
entity.setAddTime(LocalDateTime.now());
playClerkUserReviewInfoService.create(entity);
wxCustomMpService.sendClerkApplyNoticeForAdmin(userInfo);
wxCustomMpService.sendClerkApplyNoticeForAdmin(entity);
return R.ok("申请成功");
}

View File

@@ -227,7 +227,7 @@ public class WxCustomMpService {
}
public void sendClerkApplyNoticeForAdmin(PlayClerkUserInfoEntity entity) {
public void sendClerkApplyNoticeForAdmin(PlayClerkUserReviewInfoEntity entity) {
SysTenantEntity tenant = tenantService.selectSysTenantByTenantId(entity.getTenantId());
String template_id = tenant.getRzsqAdminTemplateId();
String tenantKey = tenant.getTenantKey();