|  |  | 
 |  |  | package com.dy.pipIrrProject.mqtt.manure; | 
 |  |  |  | 
 |  |  | import com.dy.common.aop.SsoAop; | 
 |  |  | import com.dy.common.webUtil.BaseResponse; | 
 |  |  | import com.dy.common.webUtil.BaseResponseUtils; | 
 |  |  | import com.dy.common.webUtil.ResultCodeMsg; | 
 |  |  | import com.dy.pipIrrGlobal.pojoPr.PrStManure; | 
 |  |  | import io.swagger.v3.oas.annotations.Operation; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Content; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import io.swagger.v3.oas.annotations.responses.ApiResponse; | 
 |  |  | import io.swagger.v3.oas.annotations.responses.ApiResponses; | 
 |  |  | import io.swagger.v3.oas.annotations.tags.Tag; | 
 |  |  | import jakarta.validation.Valid; | 
 |  |  | import lombok.RequiredArgsConstructor; | 
 |  |  | import lombok.extern.slf4j.Slf4j; | 
 |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
 |  |  | import org.springframework.http.MediaType; | 
 |  |  | import org.springframework.validation.BindingResult; | 
 |  |  | import org.springframework.web.bind.annotation.*; | 
 |  |  |  | 
 |  |  | import java.util.Objects; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  |  * @Date: 2025/6/18 14:51 | 
 |  |  |  * @Date: 2025/6/19 10:41 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Slf4j | 
 |  |  | @Tag(name = "水肥机管理", description = "水肥机管理") | 
 |  |  | @RestController | 
 |  |  | @RequestMapping(path = "manureStation") | 
 |  |  | @RequiredArgsConstructor | 
 |  |  | public class ManureCtrl { | 
 |  |  |     private ManureSv sv; | 
 |  |  |  | 
 |  |  |     @Autowired | 
 |  |  |     private void setSv(ManureSv sv){ | 
 |  |  |         this.sv = sv ; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 得到一套水肥机数据 | 
 |  |  |      * @return 一套水肥机数据 | 
 |  |  |      */ | 
 |  |  |     @Operation(summary = "一套水肥机", description = "得到一套水肥机数据") | 
 |  |  |     @ApiResponses(value = { | 
 |  |  |             @ApiResponse( | 
 |  |  |                     responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, | 
 |  |  |                     description = "返回一套水肥机数据(BaseResponse.content:{})", | 
 |  |  |                     content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, | 
 |  |  |                             schema = @Schema(implementation = PrStManure.class))} | 
 |  |  |             ) | 
 |  |  |     }) | 
 |  |  |     @GetMapping(path = "one") | 
 |  |  |     @SsoAop() | 
 |  |  |     public BaseResponse<PrStManure> one(Long id){ | 
 |  |  |         return BaseResponseUtils.buildSuccess(this.sv.selectById(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 保存水肥机 | 
 |  |  |      * @param dto 保存水肥机form表单对象 | 
 |  |  |      * @return 是否成功 | 
 |  |  |      */ | 
 |  |  |     @Operation(summary = "保存水肥机", description = "提交水肥机数据(form表单),进行保存") | 
 |  |  |     @ApiResponses(value = { | 
 |  |  |             @ApiResponse( | 
 |  |  |                     responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, | 
 |  |  |                     description = "操作结果:true:成功,false:失败(BaseResponse.content)", | 
 |  |  |                     content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, | 
 |  |  |                             schema = @Schema(implementation = Boolean.class))} | 
 |  |  |             ) | 
 |  |  |     }) | 
 |  |  |     @PostMapping(path = "save", consumes = MediaType.APPLICATION_JSON_VALUE) | 
 |  |  |     @SsoAop() | 
 |  |  |     public BaseResponse<Boolean> save(@RequestBody @Valid ManureDto dto, BindingResult bindingResult){ | 
 |  |  |         if(bindingResult != null && bindingResult.hasErrors()){ | 
 |  |  |             return BaseResponseUtils.buildFail(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage()); | 
 |  |  |         } | 
 |  |  |         PrStManure po = dto.toNewPo() ; | 
 |  |  |         po.deleted = 0 ; | 
 |  |  |         int count; | 
 |  |  |         try { | 
 |  |  |             count = this.sv.save(po); | 
 |  |  |         } catch (Exception e) { | 
 |  |  |             log.error("保存水肥机异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()) ; | 
 |  |  |         } | 
 |  |  |         if(count <= 0){ | 
 |  |  |             return BaseResponseUtils.buildFail("数据库存储失败") ; | 
 |  |  |         }else{ | 
 |  |  |             return BaseResponseUtils.buildSuccess(true) ; | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 编辑修改水肥机 | 
 |  |  |      * @param dto 保存水肥机form表单对象 | 
 |  |  |      * @return 是否成功 | 
 |  |  |      */ | 
 |  |  |     @Operation(summary = "编辑修改水肥机", description = "提交水肥机数据(form表单),进行修改") | 
 |  |  |     @ApiResponses(value = { | 
 |  |  |             @ApiResponse( | 
 |  |  |                     responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, | 
 |  |  |                     description = "操作结果:true:成功,false:失败(BaseResponse.content)", | 
 |  |  |                     content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, | 
 |  |  |                             schema = @Schema(implementation = Boolean.class))} | 
 |  |  |             ) | 
 |  |  |     }) | 
 |  |  |     @PostMapping(path = "update", consumes = MediaType.APPLICATION_JSON_VALUE) | 
 |  |  |     @SsoAop() | 
 |  |  |     public BaseResponse<Boolean> update(@RequestBody @Valid ManureDto dto, BindingResult bindingResult){ | 
 |  |  |         if(bindingResult != null && bindingResult.hasErrors()){ | 
 |  |  |             return BaseResponseUtils.buildFail(Objects.requireNonNull(bindingResult.getFieldError()).getDefaultMessage()); | 
 |  |  |         } | 
 |  |  |         PrStManure po = dto.toPo() ; | 
 |  |  |         if(po.id == null){ | 
 |  |  |             return BaseResponseUtils.buildFail("无数据实体ID") ; | 
 |  |  |         } | 
 |  |  |         int count; | 
 |  |  |         try { | 
 |  |  |             count = this.sv.update(po); | 
 |  |  |         } catch (Exception e) { | 
 |  |  |             log.error("保存水肥机异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()) ; | 
 |  |  |         } | 
 |  |  |         if(count <= 0){ | 
 |  |  |             return BaseResponseUtils.buildFail("数据库存储失败") ; | 
 |  |  |         }else{ | 
 |  |  |             return BaseResponseUtils.buildSuccess(true) ; | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 删除水肥机 | 
 |  |  |      * @param id 水肥机ID | 
 |  |  |      * @return 是否成功 | 
 |  |  |      */ | 
 |  |  |     @Operation(summary = "删除水肥机", description = "提交水肥机ID,进行逻辑删除") | 
 |  |  |     @ApiResponses(value = { | 
 |  |  |             @ApiResponse( | 
 |  |  |                     responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, | 
 |  |  |                     description = "操作结果:true:成功,false:失败(BaseResponse.content)", | 
 |  |  |                     content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, | 
 |  |  |                             schema = @Schema(implementation = Boolean.class))} | 
 |  |  |             ) | 
 |  |  |     }) | 
 |  |  |     @GetMapping(path = "delete") | 
 |  |  |     @SsoAop() | 
 |  |  |     public BaseResponse<Boolean> delete(Long id){ | 
 |  |  |         if(id == null){ | 
 |  |  |             return BaseResponseUtils.buildFail("id不能为空") ; | 
 |  |  |         } | 
 |  |  |         int count; | 
 |  |  |         try { | 
 |  |  |             count = this.sv.delete(id); | 
 |  |  |         } catch (Exception e) { | 
 |  |  |             log.error("保存水肥机异常", e); | 
 |  |  |             return BaseResponseUtils.buildException(e.getMessage()) ; | 
 |  |  |         } | 
 |  |  |         if(count <= 0){ | 
 |  |  |             return BaseResponseUtils.buildFail("数据库存储失败") ; | 
 |  |  |         }else{ | 
 |  |  |             return BaseResponseUtils.buildSuccess(true) ; | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |