xuhy
2024-08-15 98e7dc8c77c30a6cad499a4a12b5334da1fe16d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.ruoyi.web.controller.api;
 
 
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.system.domain. TBoard;
import com.ruoyi.system.service.TBoardService;
import com.ruoyi.system.service. TBoardService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
import java.util.List;
 
/**
 * <p>
 * 餐桌 前端控制器
 * </p>
 *
 * @author xiaochen
 * @since 2024-08-14
 */
@Api(tags = "餐桌")
@RestController
@RequestMapping("/t-board")
public class TBoardController {
 
    private final TBoardService boardService;
 
    @Autowired
    public  TBoardController( TBoardService  boardService) {
        this. boardService =  boardService;
    }
 
    /**
     * 查询 餐桌列表
     */
    @ApiOperation( value = "查询餐桌列表")
    @PostMapping(value = "/list")
    public AjaxResult<List< TBoard>> list() {
        return AjaxResult.success( boardService.list());
    }
 
    /**
     * 添加 餐桌管理
     */
    @ApiOperation( value = "添加餐桌")
    @PostMapping(value = "/add")
    public AjaxResult<Boolean> add(@RequestBody  TBoard dto) {
        return AjaxResult.success( boardService.save(dto));
    }
 
    /**
     * 修改 餐桌
     */
    @ApiOperation( value = "修改餐桌")
    @PostMapping(value = "/update")
    public AjaxResult<Boolean> update(@RequestBody  TBoard dto) {
        return AjaxResult.success( boardService.updateById(dto));
    }
 
    /**
     * 查看 餐桌详情
     */
    @ApiOperation( value = "查看餐桌详情")
    @GetMapping(value = "/getDetailById")
    public AjaxResult< TBoard> getDetailById(@RequestParam("id") Long id) {
        return AjaxResult.success( boardService.getById(id));
    }
 
    /**
     * 删除 餐桌
     */
    @ApiOperation( value = "删除餐桌")
    @DeleteMapping(value = "/deleteById")
    public AjaxResult<Boolean> deleteById(@RequestParam("id") Long id) {
        return AjaxResult.success( boardService.removeById(id));
    }
 
    /**
     * 批量删除 餐桌
     */
    @ApiOperation( value = "批量删除餐桌")
    @DeleteMapping(value = "/deleteByIds")
    public AjaxResult<Boolean> deleteByIds(@RequestBody List<Long> ids) {
        return AjaxResult.success( boardService.removeByIds(ids));
    }
    
}