Created by sang on 2017/12/19.
| 10 | * Created by sang on 2017/12/19. |
| 11 | */ |
| 12 | @Mapper |
| 13 | public interface CategoryMapper { |
| 14 | List<Category> getAllCategories(); |
| 15 | |
| 16 | int deleteCategoryByIds(@Param("ids") String[] ids); |
| 17 | |
| 18 | int updateCategoryById(Category category); |
| 19 | |
| 20 | int addCategory(Category category); |
| 21 | } |
no outgoing calls
no test coverage detected