liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/MedicalHistoryController.java
@@ -35,7 +35,7 @@
    /**
     * 查询病史列表
     */
    @PreAuthorize("@ss.hasPermi('system:history:list')")
    //@PreAuthorize("@ss.hasPermi('system:history:list')")
    @PostMapping("/selectMedicalHistoryList")
    @ApiOperation("查询病史列表")
    public TableDataInfo selectMedicalHistorylist(@RequestBody  MedicalHistory medicalHistory) {
@@ -47,7 +47,7 @@
    /**
     * 导出病史列表
     */
    @PreAuthorize("@ss.hasPermi('system:history:export')")
    //@PreAuthorize("@ss.hasPermi('system:history:export')")
    @Log(title = "病史", businessType = BusinessType.EXPORT)
    @ApiOperation("导出病史列表")
    @PostMapping("/export")
@@ -60,7 +60,7 @@
    /**
     * 获取病史详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:history:query')")
    //@PreAuthorize("@ss.hasPermi('system:history:query')")
    @ApiOperation("获取病史详细信息")
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id,@PathVariable("pid") Long pid) {
@@ -70,7 +70,7 @@
    /**
     * 新增病史
     */
    @PreAuthorize("@ss.hasPermi('system:history:add')")
    //@PreAuthorize("@ss.hasPermi('system:history:add')")
    @Log(title = "病史", businessType = BusinessType.INSERT)
    @ApiOperation("新增病史")
    @PostMapping("/add")
@@ -81,7 +81,7 @@
    /**
     * 修改病史
     */
    @PreAuthorize("@ss.hasPermi('system:history:edit')")
    //@PreAuthorize("@ss.hasPermi('system:history:edit')")
    @Log(title = "病史", businessType = BusinessType.UPDATE)
    @ApiOperation("修改病史")
    @PostMapping("/edit")
@@ -92,7 +92,7 @@
    /**
     * 删除病史
     */
    @PreAuthorize("@ss.hasPermi('system:history:remove')")
    //@PreAuthorize("@ss.hasPermi('system:history:remove')")
    @Log(title = "病史", businessType = BusinessType.DELETE)
    @ApiOperation("删除病史")
    @GetMapping("/remove/{ids}")