zjh
2024-03-07 2be7dea3f8f4fc91d134f34a4c529e2870c4a728
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjStandardController.java
@@ -44,7 +44,7 @@
    /**
     * 查询standard列表
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:list')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询规则列表")
    public TableDataInfo list(TjStandard tjStandard) {
@@ -65,7 +65,7 @@
    /**
     * 导出standard列表
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:export')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:export')")
    @Log(title = "standard", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, TjStandard tjStandard) {
@@ -77,7 +77,7 @@
    /**
     * 获取standard详细信息
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:query')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") String id) {
        return success(tjStandardService.selectTjStandardById(id));
@@ -86,7 +86,7 @@
    /**
     * 新增standard
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:add')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:add')")
    @Log(title = "standard", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增")
@@ -98,7 +98,7 @@
    /**
     * 修改standard
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:edit')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:edit')")
    @Log(title = "standard", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改")
@@ -109,7 +109,7 @@
    /**
     * 删除standard
     */
    @PreAuthorize("@ss.hasPermi('standard:standard:remove')")
    //@PreAuthorize("@ss.hasPermi('standard:standard:remove')")
    @Log(title = "standard", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除")