zjh
2023-10-26 cdadbb79336316018fb890d0e7121ae99ea2be4f
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjOtherCheckController.java
@@ -52,7 +52,7 @@
    /**
     * 查询体检其他检测列表
     */
    @PreAuthorize("@ss.hasPermi('system:check:list')")
    //@PreAuthorize("@ss.hasPermi('system:check:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询体检其他检测列表")
    public TableDataInfo list(TjOtherCheck tjOtherCheck) {
@@ -102,7 +102,7 @@
    /**
     * 导出体检其他检测列表
     */
    @PreAuthorize("@ss.hasPermi('system:check:export')")
    //@PreAuthorize("@ss.hasPermi('system:check:export')")
    @Log(title = "体检其他检测", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    @ApiOperation(value = "导出体检其他检测列表")
@@ -115,7 +115,7 @@
    /**
     * 获取体检其他检测详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:check:query')")
    //@PreAuthorize("@ss.hasPermi('system:check:query')")
    @GetMapping(value = "/{id}")
    @ApiOperation(value = "获取体检其他检测详细信息")
    public AjaxResult getInfo(@PathVariable("id") String id) {
@@ -125,7 +125,7 @@
    /**
     * 新增体检其他检测
     */
    @PreAuthorize("@ss.hasPermi('system:check:add')")
    //@PreAuthorize("@ss.hasPermi('system:check:add')")
    @Log(title = "体检其他检测", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增体检其他检测")
@@ -136,7 +136,7 @@
    /**
     * 修改体检其他检测
     */
    @PreAuthorize("@ss.hasPermi('system:check:edit')")
    //@PreAuthorize("@ss.hasPermi('system:check:edit')")
    @Log(title = "体检其他检测", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改体检其他检测")
@@ -147,7 +147,7 @@
    /**
     * 删除体检其他检测
     */
    @PreAuthorize("@ss.hasPermi('system:check:remove')")
    //@PreAuthorize("@ss.hasPermi('system:check:remove')")
    @Log(title = "体检其他检测", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除体检其他检测")