peng
2025-09-25 672637fa4a4914ec9667cb15f70b67482b8a0e5e
manager-api/src/main/java/cn/lili/controller/lmk/MemberCustomerTagController.java
@@ -8,6 +8,7 @@
import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -35,4 +36,10 @@
        return memberCustomerTagService.detail();
    }
    @GetMapping("/detail/{id}")
    @ApiOperation(value = "通过id获取会员标签详情", notes = "通过id获取会员标签详情")
    public Result detailById(@PathVariable String id){
        return memberCustomerTagService.detailById(id);
    }
}