package com.template.controller; import com.template.api.SmartScreenshotControllerAPI; import com.template.common.utils.paramUtils; import com.template.model.pojo.SmartScreenshot; import com.template.model.result.CommonResult; import com.template.model.result.PageUtils; import com.template.services.SmartScreenshotService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author ceshi * @since 2023-12-04 */ @RestController public class SmartScreenshotController implements SmartScreenshotControllerAPI { @Autowired private SmartScreenshotService smartScreenshotService; /** * 新增截屏风控 * @param smartApply 截屏风控数据 * @param bindingResult * @return */ @Override public CommonResult insertSmartScreenshot(SmartScreenshot smartApply, BindingResult bindingResult) { if (bindingResult.hasErrors()) { String st = paramUtils.getParamError(bindingResult); return CommonResult.fail(st); } int result = smartScreenshotService.insertSmartScreenshot(smartApply); return result > 0 ? CommonResult.ok("添加成功") : CommonResult.fail("添加失败"); } /** * 更新截屏风控 * @param sa 截屏风控数据 * @param bindingResult * @return */ @Override public CommonResult updateSmartScreenshotById(SmartScreenshot sa, BindingResult bindingResult) { if (bindingResult.hasErrors()) { String st = paramUtils.getParamError(bindingResult); return CommonResult.fail(st); } int result = smartScreenshotService.updateSmartScreenshot(sa); return result > 0 ? CommonResult.ok("修改成功") : CommonResult.fail("修改失败"); } /** * 截屏风控分页数据查询 * @param currentPage 当前页数 * @param pageCount 一页数据条数 * @param name 查询名称 * @return */ @Override public CommonResult queryPageSmartScreenshots(int currentPage, int pageCount, String name) { PageUtils result = smartScreenshotService.queryPageSmartScreenshots(currentPage, pageCount, name); return CommonResult.ok(result); } @Override public CommonResult deleteSmartScreenshotById(int id) { SmartScreenshot data = smartScreenshotService.getSmartById(id); if(data == null){ return CommonResult.fail("当前数据不存在,删除失败!"); } int result = smartScreenshotService.deleteSmartScreenshotById(id); return result > 0 ? CommonResult.ok("删除成功") : CommonResult.fail("删除失败"); } }