Helius
2021-01-11 854d9d55a86b7076abc4f526e90001bd806d324c
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
package com.matrix.system.app.action;
 
import com.matrix.core.pojo.AjaxResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
 
/**
 * @author wzy
 * @date 2020-12-22
 **/
//@Api(value = "ApiVipLabelAction", tags = "客户标签接口类")
@RestController
@RequestMapping(value = "/api/label")
public class ApiVipLabelAction {
 
 
    @ApiOperation(value = "获取客户标签列表", notes = "获取客户标签列表")
    @GetMapping(value = "/findLabelByVipId/{vipId}")
    public AjaxResult findLabelByVipId(@PathVariable("vipId") Long vipId) {
        return null;
    }
 
 
    @ApiOperation(value = "添加客户标签", notes = "添加客户标签")
    @PostMapping(value = "/addLabel")
    public AjaxResult addLabel() {
        return null;
    }
 
    @ApiOperation(value = "删除标签", notes = "删除标签")
    @GetMapping(value = "/delById/{id}")
    public AjaxResult delById(@PathVariable("id") Long id) {
        return null;
    }
 
 
}