Commit af5ddf5c by 徐高华

Merge branch 'feature/xgh/202504会员分组' into 'master'

获取msgid的完成时间调整

See merge request !2895
parents fbfe3fb5 0a2b267f
......@@ -136,6 +136,7 @@ public class GroupChatPlanController {
@RequestMapping("staff-send-result")
public RestResponse<Void> staffSendResult(@RequestBody StaffSendResultQDTO qdto) {
logger.info("企微返回={}",JSONObject.toJSONString(qdto));
qdto.setSendTime(new Date());
this.groupChatPlanApiService.staffSendResult(qdto) ;
return RestResponse.successResult();
}
......
......@@ -177,6 +177,7 @@ public class QwMomentController {
@ResponseBody
public RestResponse<Void> finishTask(@RequestBody SendResultQDTO qdto) {
logger.info("完成任务={}",JSONObject.toJSONString(qdto)) ;
qdto.setSendTime(new Date());
this.qwMomentApiService.finishTask(qdto) ;
return RestResponse.successResult();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment