| | |
| | | import com.panzhihua.common.controller.BaseController; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.sangeshenbian.model.query.ComplaintQuery; |
| | | 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 io.swagger.annotations.ApiParam; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.context.annotation.Lazy; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | 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}") |
| | | public void communityProblem(@ApiParam(name = "id", value = "诉求id", required = true) @PathVariable("id") Long id, |
| | | @SysLog(operatorCategory = "单导出",operId = 10) |
| | | public R<?> communityProblem(@ApiParam(name = "id", value = "诉求id", required = true) @PathVariable("id") Long id, |
| | | @ApiParam(name = "type", value = "类型:1:社区问题单 2:问题处理单 3:协调通知单", required = true) @PathVariable("type") Integer type) { |
| | | try { |
| | | complaintService.downloadFile(id, type,getLoginUserInfoSanGeShenBian()); |
| | | String name = complaintService.downloadFile(id, type, getLoginUserInfoSanGeShenBian()); |
| | | return R.ok(name); |
| | | } catch (IOException e) { |
| | | throw new RuntimeException(e); |
| | | } |