🎨 #2144【企业微信】更新任务卡片消息状态接口参数跟文档保持一致

This commit is contained in:
arthur0201 2021-06-07 11:37:38 +08:00 committed by GitHub
parent 4ef9b5d91e
commit 61303c2226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ public interface WxCpTaskCardService {
*
* @param userIds 企业的成员ID列表
* @param taskId 任务卡片ID
* @param clickedKey 已点击按钮的Key
* @param replaceName 替换文案
*/
void update(List<String> userIds, String taskId, String clickedKey) throws WxErrorException;
void update(List<String> userIds, String taskId, String replaceName) throws WxErrorException;
}

View File

@ -26,14 +26,14 @@ public class WxCpTaskCardServiceImpl implements WxCpTaskCardService {
private final WxCpService mainService;
@Override
public void update(List<String> userIds, String taskId, String clickedKey) throws WxErrorException {
public void update(List<String> userIds, String taskId, String replaceName) throws WxErrorException {
Integer agentId = this.mainService.getWxCpConfigStorage().getAgentId();
Map<String, Object> data = new HashMap<>(4);
data.put("userids", userIds);
data.put("agentid", agentId);
data.put("task_id", taskId);
data.put("clicked_key", clickedKey);
data.put("replace_name", replaceName);
String url = this.mainService.getWxCpConfigStorage().getApiUrl(UPDATE_TASK_CARD);
this.mainService.post(url, WxGsonBuilder.create().toJson(data));