From adf588cd4322f705cfa06d87e18a4075709df16f Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期二, 19 三月 2024 16:49:11 +0800 Subject: [PATCH] 卡口过车数据一致性 --- ycl-server/src/main/java/com/ycl/platform/controller/TCheckPublishController.java | 20 ++++++++++++++------ 1 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/TCheckPublishController.java b/ycl-server/src/main/java/com/ycl/platform/controller/TCheckPublishController.java index 25af8b5..e101f3f 100644 --- a/ycl-server/src/main/java/com/ycl/platform/controller/TCheckPublishController.java +++ b/ycl-server/src/main/java/com/ycl/platform/controller/TCheckPublishController.java @@ -4,10 +4,12 @@ import com.ycl.platform.domain.entity.TCheckPublish; import com.ycl.platform.service.ITCheckPublishService; import com.ycl.system.AjaxResult; +import com.ycl.system.Result; import com.ycl.system.controller.BaseController; import com.ycl.system.page.TableDataInfo; import com.ycl.utils.poi.ExcelUtil; import enumeration.BusinessType; +import io.swagger.annotations.ApiOperation; import jakarta.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; @@ -31,7 +33,7 @@ /** * 鏌ヨ鑰冩牳鍙戝竷鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:publish:list')") +// @PreAuthorize("@ss.hasPermi('system:publish:list')") @GetMapping("/list") public TableDataInfo list(TCheckPublish tCheckPublish) { @@ -43,7 +45,7 @@ /** * 瀵煎嚭鑰冩牳鍙戝竷鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('system:publish:export')") +// @PreAuthorize("@ss.hasPermi('system:publish:export')") @Log(title = "鑰冩牳鍙戝竷", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, TCheckPublish tCheckPublish) @@ -56,7 +58,7 @@ /** * 鑾峰彇鑰冩牳鍙戝竷璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('system:publish:query')") +// @PreAuthorize("@ss.hasPermi('system:publish:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -66,7 +68,7 @@ /** * 鏂板鑰冩牳鍙戝竷 */ - @PreAuthorize("@ss.hasPermi('system:publish:add')") +// @PreAuthorize("@ss.hasPermi('system:publish:add')") @Log(title = "鑰冩牳鍙戝竷", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody TCheckPublish tCheckPublish) @@ -77,7 +79,7 @@ /** * 淇敼鑰冩牳鍙戝竷 */ - @PreAuthorize("@ss.hasPermi('system:publish:edit')") +// @PreAuthorize("@ss.hasPermi('system:publish:edit')") @Log(title = "鑰冩牳鍙戝竷", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody TCheckPublish tCheckPublish) @@ -88,11 +90,17 @@ /** * 鍒犻櫎鑰冩牳鍙戝竷 */ - @PreAuthorize("@ss.hasPermi('system:publish:remove')") +// @PreAuthorize("@ss.hasPermi('system:publish:remove')") @Log(title = "鑰冩牳鍙戝竷", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(tCheckPublishService.deleteTCheckPublishByIds(ids)); } + + @GetMapping("/all") + @ApiOperation(value = "涓嬫媺鍒楄〃", notes = "涓嬫媺鍒楄〃") + public Result all() { + return tCheckPublishService.all(); + } } -- Gitblit v1.8.0