|
@@ -300,10 +300,12 @@ public class MessageNoticeApiController {
|
|
|
@ApiOperation(value = "用户是否同意")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "messageId", value = "消息ID", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "remark", value = "备注", paramType = "query"),
|
|
|
@ApiImplicitParam(name = "isAgree", value = "是否同意", paramType = "query"),
|
|
|
})
|
|
|
public MessageResult<String> changeAgree(
|
|
|
@RequestParam(value="messageId",defaultValue="") String messageId,
|
|
|
+ @RequestParam(value="remark",defaultValue="") String remark,
|
|
|
Boolean isAgree,
|
|
|
String token,
|
|
|
@RequestAttribute String subject) {
|
|
@@ -373,7 +375,7 @@ public class MessageNoticeApiController {
|
|
|
resumeDeliverRecord.setDelFlag(false);
|
|
|
resumeDeliverRecord.setResumeDeliverId(resumeDeliver.getId());
|
|
|
resumeDeliverRecord.setStep("拒绝");
|
|
|
- resumeDeliverRecord.setRemark("用户已拒绝");
|
|
|
+ resumeDeliverRecord.setRemark(remark);
|
|
|
resumeDeliverRecordService.insert(resumeDeliverRecord);
|
|
|
}
|
|
|
}
|