| | |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.sangeshenbian.annotation.SysLog; |
| | | import com.panzhihua.sangeshenbian.model.dto.ComplaintProcessUpdateDto; |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintVO; |
| | | import com.panzhihua.sangeshenbian.service.IComplaintService; |
| | | import com.panzhihua.sangeshenbian.warpper.MgtComplaintQuery; |
| | |
| | | import org.springframework.context.annotation.Lazy; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.io.IOException; |
| | | |
| | | /** |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | @PostMapping("/update-progress") |
| | | @ApiOperation("办理进度修改2.0.1") |
| | | public R<?> updateProgress(@Valid @RequestBody ComplaintProcessUpdateDto dto) { |
| | | complaintService.updateProgress(dto); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @DeleteMapping("del-progress/{id}") |
| | | @ApiOperation("办理进度删除2.0.1") |
| | | public R<?> delProgress(@ApiParam(name = "id", value = "办理进度id", required = true) @PathVariable("id") Long id) { |
| | | complaintService.delProgress(id); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("社区问题单、问题处理单、协调通知单 下载") |
| | | @GetMapping("/download-file/{id}/{type}") |
| | | @SysLog(operatorCategory = "单导出",operId = 10) |