package pers.sakurasora.onlinestore.dao;
import java.util.List;
import pers.sakurasora.onlinestore.entity.Category;
/**
*
*
* @Description
* Dao层接口--操作t_category表
*/
public interface CategoryDao {
/**
* 查询所有分类
* @return List<Category>
* @throws Exception
*/
List<Category> findAll() throws Exception;
/**
* 添加分类
* @param category
* @throws Exception
*/
void add(Category category) throws Exception;
/**
* 根据分类编号删除分类
* @param iCategoryId 分类编号
* @throws Exception
*/
void delete(int iCategoryId) throws Exception;
}
最近下载更多
biakuya LV2
1月4日
Mhgfhjyrf LV3
2024年12月10日
komorebi123987 LV5
2023年12月9日
dowell_liu LV1
2023年8月2日
joker1branch LV5
2023年6月19日
ZDM133 LV2
2023年5月22日
distanceq LV2
2023年5月20日
desireQ LV2
2023年5月17日
z1556262 LV5
2023年5月4日
微信网友_6350556908965888 LV1
2023年2月15日

最近浏览