| package com.matrix.system.common.service; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
| import com.matrix.system.common.bean.SystemDictionary; | 
| import com.matrix.system.hive.plugin.util.BaseServices; | 
|   | 
| import java.util.List; | 
|   | 
|   | 
|   | 
| /** | 
|  * | 
|  * @date 2016-07-03 20:53 | 
|  */ | 
| public interface SystemDictionaryService extends BaseServices<SystemDictionary> { | 
|      | 
|     /** | 
|      * 新增SysDataDictionary | 
|      *  | 
|      */ | 
|     public int add(SystemDictionary sysDataDictionary); | 
|         | 
|        /** | 
|      * 更新SysDataDictionary | 
|      *  | 
|      */ | 
|     public int modify(SystemDictionary sysDataDictionary); | 
|      | 
|     /** | 
|      * 批量删除SysDataDictionary | 
|      *  | 
|      */ | 
|     public int remove(List<Long> list); | 
|   | 
|     /** | 
|      * 根据id删除SysDataDictionary | 
|      *  | 
|      */ | 
|     public int removeById(Long id); | 
|      | 
|     /** | 
|      * 分页查询SysDataDictionary | 
|      *  | 
|      */ | 
|     public List<SystemDictionary> findInPage(SystemDictionary sysDataDictionary, PaginationVO pageVo); | 
|   | 
|     /** | 
|      * 根据对象查询SysDataDictionary | 
|      *  | 
|      */ | 
|     public List<SystemDictionary> findByModel(SystemDictionary sysDataDictionary); | 
|      | 
|     /** | 
|      * 统计记录数SysDataDictionary | 
|      *  | 
|      */ | 
|     public int  findTotal(SystemDictionary sysDataDictionary); | 
|      | 
|     /** | 
|      * 根据id查询SysDataDictionary | 
|      *  | 
|      */ | 
|     public SystemDictionary findById(Long id); | 
|     /** | 
|      *  | 
|     *      查询字典里面的所有字典类型 | 
|     * @author:jyy | 
|     * @param @return    AjaxResult | 
|     * @throws | 
|      */ | 
|     public List<String> getDictionaryType(); | 
|   | 
|   | 
|         | 
|   | 
|    | 
| } |