houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.iailab.module.data.http.controller.admin;
 
import com.iailab.module.data.common.utils.PageUtils;
import com.iailab.module.data.common.utils.R;
import com.iailab.framework.common.pojo.CommonResult;
import com.iailab.module.data.http.dto.HttpTagDTO;
import com.iailab.module.data.http.entity.HttpTagEntity;
import com.iailab.module.data.http.service.HttpTagService;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.*;
 
import java.util.List;
import java.util.Map;
import java.util.UUID;
 
/**
 * @author Houzhongjian
 * @Description
 * @createTime 2024年04月10日 17:37:00
 */
@RestController
@RequestMapping("/data/http/tag")
public class HttpTagController {
 
    @Resource
    private HttpTagService tagService;
 
    /**
     * 分页
     *
     * @param params
     */
    @GetMapping("/page")
    public R tagPageList(@RequestParam Map<String, Object> params) {
        PageUtils page = tagService.queryPage(params);
 
        return R.ok().put("page", page);
    }
 
    /**
     * 查询tagList
     *
     */
    @GetMapping("/list")
    public R tagList(@RequestParam Map<String, Object> params){
        List<HttpTagEntity> data = tagService.selectList(params);
 
        return R.ok().put("data", data);
    }
 
    /**
     * 详情
     *
     * @param id
     */
    @GetMapping("/info/{id}")
    public R tagInfo(@PathVariable("id") String id) {
        HttpTagEntity info = tagService.selectById(id);
        return R.ok().put("data", info);
    }
 
    /**
     * 添加
     *
     * @param entity
     */
    @PostMapping("/add")
    public R tagAdd(@RequestBody HttpTagEntity entity) {
        entity.setId(UUID.randomUUID().toString());
        tagService.insert(entity);
        return R.ok();
    }
 
    /**
     * 修改
     *
     * @param entity
     */
    @PostMapping("/update")
    public R tagUpdate(@RequestBody HttpTagEntity entity) {
        tagService.updateById(entity);
        return R.ok();
    }
 
    /**
     * 删除
     *
     * @param params
     */
    @PostMapping("/delete")
    public R tagDelete(@RequestBody Map<String, Object> params) {
        String id = (String) params.get("id");
        tagService.deleteById(id);
        return R.ok();
    }
 
 
    @GetMapping("tagNo")
    public CommonResult<List<HttpTagDTO>> list(@RequestParam Map<String, Object> params){
        List<HttpTagDTO> list = tagService.list(params);
        return new CommonResult<List<HttpTagDTO>>().setData(list);
    }
}