| | |
| | | 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; |
| | | |
| | |
| | | return memberCustomerTagService.detail(); |
| | | } |
| | | |
| | | @GetMapping("/detail/{id}") |
| | | @ApiOperation(value = "通过id获取会员标签详情", notes = "通过id获取会员标签详情") |
| | | public Result detailById(@PathVariable String id){ |
| | | return memberCustomerTagService.detailById(id); |
| | | } |
| | | |
| | | } |