| | |
| | | import com.mindskip.xzs.domain.Tag; |
| | | import com.mindskip.xzs.domain.vo.TagVO; |
| | | import com.mindskip.xzs.service.TagService; |
| | | import lombok.Data; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | |
| | | @RestController |
| | | @RequestMapping(value = "/api/admin/tag") |
| | | @Data |
| | | @RequiredArgsConstructor |
| | | public class TagController extends BaseApiController { |
| | | |
| | | private final TagService tagService; |