|
@@ -104,7 +104,8 @@ public class TicketController {
|
104
|
104
|
|
105
|
105
|
@ApiOperation(value = "回复 报修/投诉/联系单 追问接口", notes = "回复 报修/投诉/联系单 追问接口")
|
106
|
106
|
@ApiImplicitParams({@ApiImplicitParam(paramType = "path", dataType = "integer", name = "communityId", value = "小区Id"),
|
107
|
|
- @ApiImplicitParam(name = "tpTicketRecordComment", value = "回复记录参数", paramType = "body")})
|
|
107
|
+ @ApiImplicitParam(name = "tpTicketRecordComment", value = "回复记录参数", paramType = "body"),
|
|
108
|
+ @ApiImplicitParam(paramType = "header",dataType = "String",name = "X-Auth-Token",value = "Token")})
|
108
|
109
|
@RequestMapping(value = "/ticket/reply/{communityId}", method = RequestMethod.POST)
|
109
|
110
|
public ResponseBean updateTicketsReply(@PathVariable(value = "communityId") Integer communityId, @RequestBody TpTicketRecordComment tpTicketRecordComment, HttpSession session){
|
110
|
111
|
UserElement userElement = (UserElement) session.getAttribute(Constant.APP_USER_SESSION);
|
|
@@ -122,7 +123,6 @@ public class TicketController {
|
122
|
123
|
|
123
|
124
|
@ApiOperation(value = "添加报修", notes = "添加报修")
|
124
|
125
|
@ApiImplicitParams({
|
125
|
|
-
|
126
|
126
|
@ApiImplicitParam(paramType = "query",dataType = "String",name = "ticketContent",value = "工单内容"),
|
127
|
127
|
@ApiImplicitParam(paramType = "query",dataType = "String",name = "ticketTitle",value = "工单标题"),
|
128
|
128
|
@ApiImplicitParam(paramType = "query",dataType = "String",name = "repairType",value = "报修房屋类型"),
|