| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @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<SmartScreenshot> 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("删除失败");
- }
- }
|