parent
e3f452aea3
commit
d28ffc3dc9
@ -0,0 +1,19 @@
|
|||||||
|
package org.sang.mapper;
|
||||||
|
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.sang.bean.Category;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface CategoryMapper {
|
||||||
|
List<Category> getAllCategories();
|
||||||
|
|
||||||
|
int deleteCategoryByIds(@Param("ids") String[] ids);
|
||||||
|
|
||||||
|
int updateCategoryById(Category category);
|
||||||
|
|
||||||
|
int addCategory(Category category);
|
||||||
|
}
|
Loading…
Reference in new issue