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;
|
}
|
|
|
}
|