liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatMedRegistrationController.java
@@ -34,7 +34,7 @@
     * 查询患者挂号记录列表
     */
    @ApiOperation("查询患者挂号记录列表")
    @PreAuthorize("@ss.hasPermi('system:registration:list')")
    //@PreAuthorize("@ss.hasPermi('system:registration:list')")
    @GetMapping("/list")
    public TableDataInfo list(PatMedRegistration patMedRegistration) {
        startPage();
@@ -46,7 +46,7 @@
     * 导出患者挂号记录列表
     */
    @ApiOperation("导出患者挂号记录列表")
    @PreAuthorize("@ss.hasPermi('system:registration:export')")
    //@PreAuthorize("@ss.hasPermi('system:registration:export')")
    @Log(title = "患者挂号记录", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, PatMedRegistration patMedRegistration) {
@@ -59,7 +59,7 @@
     * 获取患者挂号记录详细信息
     */
    @ApiOperation("获取患者挂号记录详细信息")
    @PreAuthorize("@ss.hasPermi('system:registration:query')")
    //@PreAuthorize("@ss.hasPermi('system:registration:query')")
    @GetMapping(value = "/getInfo/{registid}")
    public AjaxResult getInfo(@PathVariable("registid") Long registid) {
        return success(patMedRegistrationService.selectPatMedRegistrationByRegistid(registid));
@@ -69,7 +69,7 @@
     * 新增患者挂号记录
     */
    @ApiOperation("新增患者挂号记录")
    @PreAuthorize("@ss.hasPermi('system:registration:add')")
    //@PreAuthorize("@ss.hasPermi('system:registration:add')")
    @Log(title = "患者挂号记录", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    public AjaxResult add(@RequestBody PatMedRegistration patMedRegistration) {
@@ -80,7 +80,7 @@
     * 修改患者挂号记录
     */
    @ApiOperation("修改患者挂号记录")
    @PreAuthorize("@ss.hasPermi('system:registration:edit')")
    //@PreAuthorize("@ss.hasPermi('system:registration:edit')")
    @Log(title = "患者挂号记录", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody PatMedRegistration patMedRegistration) {
@@ -91,7 +91,7 @@
     * 删除患者挂号记录
     */
    @ApiOperation("删除患者挂号记录")
    @PreAuthorize("@ss.hasPermi('system:registration:remove')")
    //@PreAuthorize("@ss.hasPermi('system:registration:remove')")
    @Log(title = "患者挂号记录", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{registids}")
    public AjaxResult remove(@PathVariable Long[] registids) {