lige
2023-11-30 3f28b46171934066aeeff9af80d3f0ce6afb3adf
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjChargingStandardController.java
@@ -37,7 +37,7 @@
    /**
     * 查询体检收费明细列表
     */
    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:list')")
//    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:list')")
    @GetMapping("/list")
    public TableDataInfo list(TjChargingStandard tjChargingStandard) {
        startPage();
@@ -48,7 +48,7 @@
    /**
     * 导出体检收费明细列表
     */
    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:export')")
//    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:export')")
    @Log(title = "体检收费明细", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, TjChargingStandard tjChargingStandard) {
@@ -69,7 +69,7 @@
    /**
     * 新增体检收费明细
     */
    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:add')")
//    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:add')")
    @Log(title = "体检收费明细", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody TjChargingStandard tjChargingStandard) {
@@ -79,7 +79,7 @@
    /**
     * 修改体检收费明细
     */
    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:edit')")
//    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:edit')")
    @Log(title = "体检收费明细", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody TjChargingStandard tjChargingStandard) {
@@ -89,7 +89,7 @@
    /**
     * 删除体检收费明细
     */
    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:remove')")
//    @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:remove')")
    @Log(title = "体检收费明细", businessType = BusinessType.DELETE)
    @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids) {