yxh
5 天以前 dc4df9a530016c4fd24f9aebc6ccf1b95310ff1f
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatReservationRecordController.java
@@ -17,12 +17,12 @@
import java.util.List;
/**
 * 【请填写功能名称】Controller
 * 患者预约记录Controller
 *
 * @author lihu
 * @date 2025-06-24
 */
@Api("【请填写功能名称】")
@Api("患者预约记录")
@RestController
@RequestMapping("/smartor/record")
public class PatReservationRecordController extends BaseController {
@@ -30,9 +30,9 @@
    private IPatReservationRecordService patReservationRecordService;
    /**
     * 查询【请填写功能名称】列表
     * 查询患者预约记录列表
     */
    @ApiOperation("查询【请填写功能名称】列表")
    @ApiOperation("查询患者预约记录列表")
    //@PreAuthorize("@ss.hasPermi('smartor:record:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody PatReservationRecord patReservationRecord) {
@@ -42,9 +42,9 @@
    }
    /**
     * 导出【请填写功能名称】列表
     * 导出患者预约记录列表
     */
    @ApiOperation("导出【请填写功能名称】列表")
    @ApiOperation("导出患者预约记录列表")
    //@PreAuthorize("@ss.hasPermi('smartor:record:export')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
@@ -57,7 +57,7 @@
    /**
     * 获取【请填写功能名称】详细信息
     */
    @ApiOperation("获取【请填写功能名称】详细信息")
    @ApiOperation("获取患者预约记录详细信息")
    //@PreAuthorize("@ss.hasPermi('smartor:record:query')")
    @GetMapping(value = "/getInfo/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
@@ -65,9 +65,9 @@
    }
    /**
     * 新增【请填写功能名称】
     * 新增患者预约记录
     */
    @ApiOperation("新增【请填写功能名称】")
    @ApiOperation("新增患者预约记录")
    //@PreAuthorize("@ss.hasPermi('smartor:record:add')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
    @PostMapping("/add")
@@ -76,9 +76,9 @@
    }
    /**
     * 修改【请填写功能名称】
     * 修改患者预约记录
     */
    @ApiOperation("修改【请填写功能名称】")
    @ApiOperation("修改患者预约记录")
    //@PreAuthorize("@ss.hasPermi('smartor:record:edit')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
@@ -87,9 +87,9 @@
    }
    /**
     * 删除【请填写功能名称】
     * 删除患者预约记录
     */
    @ApiOperation("删除【请填写功能名称】")
    @ApiOperation("删除患者预约记录")
    //@PreAuthorize("@ss.hasPermi('smartor:record:remove')")
    @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{ids}")