Created by yfyuan on 2016/8/26.
| 10 | * Created by yfyuan on 2016/8/26. |
| 11 | */ |
| 12 | @Repository |
| 13 | public interface CategoryDao { |
| 14 | |
| 15 | List<DashboardCategory> getCategoryList(); |
| 16 | |
| 17 | int save(DashboardCategory dashboardCategory); |
| 18 | |
| 19 | long countExistCategoryName(Map<String, Object> map); |
| 20 | |
| 21 | int update(DashboardCategory dashboardCategory); |
| 22 | |
| 23 | int delete(Long id); |
| 24 | } |