Merge remote-tracking branch 'origin/huacheng_test' into huacheng_test
| | |
| | | @ApiModelProperty("用户取消时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date revokeDate; |
| | | @ApiModelProperty("调解站电话") |
| | | private String contact; |
| | | } |
| | |
| | | public R rejectRequest(@RequestParam("id") Long id) { |
| | | ComEvent comEvent = new ComEvent(); |
| | | comEvent.setId(id); |
| | | comEvent.setEventProcessStatus(SanShuoEventStatusEnum.REJECT.getCode()); |
| | | comEvent.setEventProcessStatus(SanShuoEventStatusEnum.VALID.getCode()); |
| | | return comEventService.updateComEvent(comEvent); |
| | | } |
| | | |
| | |
| | | /**当前调解处理结果*/ |
| | | @ApiModelProperty(name = "currentEventProcessResult", value = "当前调解处理结果") |
| | | private String currentEventProcessResult; |
| | | /**调解是否成果1未成果2已成果*/ |
| | | /**调解是否成果1未成功2已成果*/ |
| | | @ApiModelProperty(name = "eventSucceed", value = "调解是否成果1未成功2已成功") |
| | | private Integer eventSucceed; |
| | | /**事件结果(1、调解失败2、调解成功)*/ |
| | |
| | | private String processResultData; |
| | | /**处理时间*/ |
| | | @ApiModelProperty(name = "processDate", value = "处理时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date processDate; |
| | | /**(1、行业分中心2、社区3、是街道4、区)下的处理人ID*/ |
| | | @ApiModelProperty(name = "processBy", value = "(1、行业分中心2、社区3、是街道4、区)下的处理人ID") |
| | |
| | | comEvent.setEventSucceed(comEventConciliationVO.getEventSucceed()); |
| | | comEvent.setEventResult(comEventConciliationVO.getEventResult()); |
| | | comEvent.setReportSuperior(comEventConciliationVO.getReportSuperior()); |
| | | if(comEventConciliationVO.getEventSucceed().equals(2) || comEventConciliationVO.getEventSucceed().equals(1)){ |
| | | if(comEventConciliationVO.getEventSucceed().equals(2)){ |
| | | comEvent.setEventProcessStatus(6); |
| | | } |
| | | comEvent.setCurrentEventProcessResult(comEventConciliationVO.getCurrentEventProcessResult()); |