| | |
| | | public AjaxResult add(@RequestBody ArdAlarmpointsWell ardAlarmpointsWell) { |
| | | try { |
| | | return toAjax(ardAlarmpointsWellService.insertArdAlarmpointsWell(ardAlarmpointsWell)); |
| | | } catch (DuplicateKeyException e) { |
| | | return AjaxResult.error("井号重复"); |
| | | } catch (Exception e) { |
| | | return AjaxResult.error(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | |
| | | @ApiOperation("修改井") |
| | | public AjaxResult edit(@RequestBody ArdAlarmpointsWell ardAlarmpointsWell) { |
| | | try { |
| | | return toAjax(ardAlarmpointsWellService.updateArdAlarmpointsWell(ardAlarmpointsWell)); |
| | | } catch (DuplicateKeyException e) { |
| | | return AjaxResult.error("井号重复"); |
| | | return toAjax(ardAlarmpointsWellService.updateArdAlarmpointsWell(ardAlarmpointsWell)); |
| | | } catch (Exception e) { |
| | | return AjaxResult.error(e.getMessage()); |
| | | } |
| | | } |
| | | |