zjh
2024-01-04 8720970864b887e34adc94e5bf5b19e709a1c042
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjPrintOrderController.java
@@ -52,7 +52,7 @@
    /**
     * 查询体检打印记录列表
     */
    @PreAuthorize("@ss.hasPermi('system:order:list')")
    //@PreAuthorize("@ss.hasPermi('system:order:list')")
    @GetMapping("/list")
    @ApiOperation(value = "查询")
    public TableDataInfo list(TjPrintOrder tjPrintOrder) {
@@ -64,7 +64,7 @@
    /**
     * 导出体检打印记录列表
     */
    @PreAuthorize("@ss.hasPermi('system:order:export')")
    // @PreAuthorize("@ss.hasPermi('system:order:export')")
    @Log(title = "体检打印记录", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    @ApiOperation(value = "导出")
@@ -77,7 +77,7 @@
    /**
     * 获取体检打印记录详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:order:query')")
    //@PreAuthorize("@ss.hasPermi('system:order:query')")
    @GetMapping(value = "/{id}")
    @ApiOperation(value = "详请")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
@@ -87,7 +87,7 @@
    /**
     * 新增体检打印记录
     */
    @PreAuthorize("@ss.hasPermi('system:order:add')")
    //@PreAuthorize("@ss.hasPermi('system:order:add')")
    @Log(title = "体检打印记录", businessType = BusinessType.INSERT)
    @PostMapping
    @ApiOperation(value = "新增")
@@ -104,7 +104,7 @@
    /**
     * 修改体检打印记录
     */
    @PreAuthorize("@ss.hasPermi('system:order:edit')")
    //@PreAuthorize("@ss.hasPermi('system:order:edit')")
    @Log(title = "体检打印记录", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation(value = "修改")
@@ -115,7 +115,7 @@
    /**
     * 删除体检打印记录
     */
    @PreAuthorize("@ss.hasPermi('system:order:remove')")
    //@PreAuthorize("@ss.hasPermi('system:order:remove')")
    @Log(title = "体检打印记录", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    @ApiOperation(value = "删除")