| | |
| | | } |
| | | |
| | | /** |
| | | * PC端-纠纷登记-草稿箱-保存纠纷信息 |
| | | * @url {ctx}/api/v1/casedraftInfo/caseDraftRegister |
| | | * PC端-纠纷登记-保存纠纷信息草稿 |
| | | * @url {ctx}/api/web/casedraftInfo/caseDraftRegister |
| | | * @param draftRegisterSaveDTO 实体对象 |
| | | */ |
| | | @PostMapping("/caseDraftRegister") |
| | |
| | | return ReturnFailUtils.getRepInfo(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * PC端-正式案件-查询纠纷信息草稿 |
| | | * @url {ctx}/api/web/casedraftInfo/getCasedraftInfo?id= |
| | | * @param id 纠纷编号 |
| | | * @return Object |
| | | */ |
| | | @GetMapping("/getCasedraftInfo") |
| | | public Object getCasedraftInfo(@RequestParam(value = "id") String id) { |
| | | try { |
| | | return ReturnSucUtils.getRepInfo(service.getCasedraftInfo(id)); |
| | | } catch (Exception e) { |
| | | return ReturnFailUtils.getRepInfo(e.getMessage()); |
| | | } |
| | | } |
| | | } |