作物相关接口、作物灌溉制度相关接口、轮灌组相关接口、灌溉单元相关接口修改完善失败响应信息并配置相应枚举类
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(cropSv.addCrop(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_CROP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("添加作物异常", e); |
| | |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> delete(@RequestBody Map map) { |
| | | if (map == null || map.size() <= 0) { |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_PROJECT_ID.getMessage()); |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_CROP_ID.getMessage()); |
| | | } |
| | | Long cropId = Long.parseLong(map.get("id").toString()); |
| | | try { |
| | | Integer rows = cropSv.deleteCrop(cropId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_CROP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除作物异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(cropSv.updateCrop(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_CROP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("修改作物异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irrigateGroupSv.addIrrigateGroup(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_GROUP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("创建轮灌组异常", e); |
| | |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> delete(@RequestBody Map map) { |
| | | if (map == null || map.size() <= 0) { |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_PROJECT_ID.getMessage()); |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_GROUP_ID.getMessage()); |
| | | } |
| | | Long groupId = Long.parseLong(map.get("id").toString()); |
| | | try { |
| | | Integer rows = irrigateGroupSv.deleteIrrigateGroup(groupId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_GROUP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除轮灌组异常", e); |
| | |
| | | try { |
| | | Integer rows = irrigateGroupSv.deleteIrrigateGroup(groupId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_GROUP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除轮灌组异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irrigateGroupSv.updateIrrigateGroup(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_GROUP_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("修改轮灌组异常", e); |
| | |
| | | irGroupUnit.setOperator(operator); |
| | | Integer rec = Optional.ofNullable(irrigateGroupSv.addGroupUnit(irGroupUnit)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.GROUP_ADD_UNIT_FAIL.getMessage()); |
| | | } |
| | | } |
| | | } catch (Exception e) { |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irIrrigateSchedulingSv.addScheduling(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_SCHEDULING_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("添加作物灌溉制度异常", e); |
| | |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> delete(@RequestBody Map map) { |
| | | if (map == null || map.size() <= 0) { |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_PROJECT_ID.getMessage()); |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_SCHEDULING_ID.getMessage()); |
| | | } |
| | | Long schedulingId = Long.parseLong(map.get("id").toString()); |
| | | try { |
| | | Integer rows = irIrrigateSchedulingSv.deleteScheduling(schedulingId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_SCHEDULING_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除作物灌溉制度异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irIrrigateSchedulingSv.updateScheduling(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_SCHEDULING_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("修改作物灌溉制度异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irrigateUnitSv.addIrrigateUnit(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.ADD_UNIT_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("创建灌溉单元异常", e); |
| | |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> delete(@RequestBody Map map) { |
| | | if (map == null || map.size() <= 0) { |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_PROJECT_ID.getMessage()); |
| | | BaseResponseUtils.buildFail(IrrigateResultCode.PLEASE_INPUT_UNIT_ID.getMessage()); |
| | | } |
| | | Long unitId = Long.parseLong(map.get("id").toString()); |
| | | try { |
| | | Integer rows = irrigateUnitSv.deleteUnit(unitId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_UNIT_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除灌溉单元异常", e); |
| | |
| | | try { |
| | | Integer rows = irrigateUnitSv.deleteUnit(unitId); |
| | | if (rows == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.DELETE_UNIT_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("删除灌溉单元异常", e); |
| | |
| | | try { |
| | | Integer rec = Optional.ofNullable(irrigateUnitSv.updateUnit(po)).orElse(0); |
| | | if (rec == 0) { |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_PROJECT_FAIL.getMessage()); |
| | | return BaseResponseUtils.buildFail(IrrigateResultCode.UPDATE_UNIT_FAIL.getMessage()); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("修改灌溉单元异常", e); |
| | |
| | | * 灌溉单元 |
| | | */ |
| | | UNIT_ASSOCIATE_CLIENT_FAIL(20001, "灌溉单元分配失败"), |
| | | ADD_UNIT_FAIL(20002, "灌溉单元添加失败"), |
| | | PLEASE_INPUT_UNIT_ID(20003, "请输入灌溉单元ID"), |
| | | DELETE_UNIT_FAIL(20004, "灌溉单元删除失败"), |
| | | UPDATE_UNIT_FAIL(20005, "灌溉单元修改失败"), |
| | | |
| | | /** |
| | | * 轮灌组 |
| | | */ |
| | | GRPUP_ASSOCIATE_CLIENT_FAIL(30001, "轮灌组关联农户失败"); |
| | | GRPUP_ASSOCIATE_CLIENT_FAIL(30001, "轮灌组关联农户失败"), |
| | | ADD_GROUP_FAIL(30002, "轮灌组添加失败"), |
| | | PLEASE_INPUT_GROUP_ID(30003, "请输入轮灌组ID"), |
| | | DELETE_GROUP_FAIL(30004, "轮灌组删除失败"), |
| | | UPDATE_GROUP_FAIL(30005, "轮灌组修改失败"), |
| | | GROUP_ADD_UNIT_FAIL(30006, "轮灌组添加灌溉单元失败"), |
| | | GROUP_DELETE_UNIT_FAIL(30007, "轮灌组移除灌溉单元失败"), |
| | | UPDATE_GROUP_BIND_UNIT_FAIL(30008, "修改轮灌组绑定的灌溉单元失败"), |
| | | |
| | | // ADD_IRRIGATE_UNIT_FAIL(20001, "创建灌溉单元失败"), |
| | | /** |
| | | * 作物 |
| | | */ |
| | | ADD_CROP_FAIL(40001, "作物添加失败"), |
| | | PLEASE_INPUT_CROP_ID(40002, "请输入作物ID"), |
| | | DELETE_CROP_FAIL(40003, "作物删除失败"), |
| | | UPDATE_CROP_FAIL(40004, "作物修改失败"), |
| | | |
| | | /** |
| | | * 作物灌溉制度 |
| | | */ |
| | | ADD_SCHEDULING_FAIL(50001, "作物灌溉制度添加失败"), |
| | | PLEASE_INPUT_SCHEDULING_ID(50002, "请输入作物灌溉制度ID"), |
| | | DELETE_SCHEDULING_FAIL(50003, "作物灌溉制度删除失败"), |
| | | UPDATE_SCHEDULING_FAIL(50004, "作物灌溉制度修改失败"); |
| | | |
| | | |
| | | |
| | | private final Integer code; |
| | | private final String message; |