| | |
| | | |
| | | @ApiOperation("案件暂不处理") |
| | | @GetMapping("/case_leave") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "type", value = "01 违规,02 违建", dataType = "Integer") |
| | | }) |
| | | public CommonResult updateCaseStatus(@RequestParam Integer caseId) { |
| | | Integer leaveType = 8; |
| | | return CommonResult.success(baseCaseService |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "上传违规/违建处置结果") |
| | | @GetMapping("/addition_") |
| | | @GetMapping("/addition_dispose_result") |
| | | public CommonResult searchDisposeList(@RequestParam Integer caseId, @RequestParam Integer type, @RequestBody UploadDisposingResultParam uploadDisposingResultParam) { |
| | | AdminUserDetails user = (AdminUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); |
| | | //当事人 |
| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value = "上传违规/违建处置") |
| | | public class QuestionDisposeVO { |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |