| | |
| | | /** |
| | | * 查询体检收费明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:list')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(TjChargingStandard tjChargingStandard) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 导出体检收费明细列表 |
| | | */ |
| | | @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) { |
| | |
| | | /** |
| | | * 新增体检收费明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:add')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:add')") |
| | | @Log(title = "体检收费明细", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody TjChargingStandard tjChargingStandard) { |
| | |
| | | /** |
| | | * 修改体检收费明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('hosp:chargingstandard:edit')") |
| | | @Log(title = "体检收费明细", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody TjChargingStandard tjChargingStandard) { |
| | |
| | | /** |
| | | * 删除体检收费明细 |
| | | */ |
| | | @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) { |