|
@@ -105,7 +105,7 @@ public class TicketController {
|
105
|
105
|
|
106
|
106
|
@ApiOperation(value = "回复 报修/投诉/联系单 追问接口", notes = "回复 报修/投诉/联系单 追问接口")
|
107
|
107
|
@ApiImplicitParams({@ApiImplicitParam(paramType = "path", dataType = "integer", name = "communityId", value = "小区Id"),
|
108
|
|
- @ApiImplicitParam(name = "tpTicketRecordComment", value = "回复记录参数", paramType = "body"),
|
|
108
|
+ @ApiImplicitParam(name = "tpTicketRecordComment", value = "回复记录参数(ticketId:工单id,content:回复时间,ticketRecordCommentId:需要回复的id)", paramType = "body"),
|
109
|
109
|
@ApiImplicitParam(paramType = "header",dataType = "String",name = "X-Auth-Token",value = "Token")})
|
110
|
110
|
@RequestMapping(value = "/ticket/reply/{communityId}", method = RequestMethod.POST)
|
111
|
111
|
public ResponseBean updateTicketsReply(@PathVariable(value = "communityId") Integer communityId, @RequestBody TpTicketRecordComment tpTicketRecordComment, HttpSession session){
|