| package com.matrix.system.hive.service; | 
|   | 
| import java.util.List; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
| import com.matrix.system.hive.bean.LastestWorkBeatuistaff; | 
| import com.matrix.system.hive.plugin.util.BaseServices; | 
|   | 
| /** | 
|  * | 
|  * @date 2016-12-22 10:46 | 
|  */ | 
| public interface LastestWorkBeatuistaffService  extends BaseServices<LastestWorkBeatuistaff> { | 
|      | 
|     /** | 
|      * 新增LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int add(LastestWorkBeatuistaff lastestWorkBeatuistaff); | 
|         | 
|        /** | 
|      * 更新LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int modify(LastestWorkBeatuistaff lastestWorkBeatuistaff); | 
|      | 
|     /** | 
|      * 批量删除LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int remove(List<Long> list); | 
|   | 
|     /** | 
|      * 根据id删除LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int removeById(Long id); | 
|      | 
|     /** | 
|      * 根据对象删除LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int removeByModel(LastestWorkBeatuistaff lastestWorkBeatuistaff); | 
|      | 
|     /** | 
|      * 分页查询LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public List<LastestWorkBeatuistaff> findInPage(LastestWorkBeatuistaff lastestWorkBeatuistaff, PaginationVO pageVo); | 
|   | 
|     /** | 
|      * 根据对象查询LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public List<LastestWorkBeatuistaff> findByModel(LastestWorkBeatuistaff lastestWorkBeatuistaff); | 
|      | 
|     /** | 
|      * 统计记录数LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public int  findTotal(LastestWorkBeatuistaff lastestWorkBeatuistaff); | 
|      | 
|     /** | 
|      * 根据id查询LastestWorkBeatuistaff | 
|      *  | 
|      */ | 
|     public LastestWorkBeatuistaff  findById(Long id); | 
|   | 
|         | 
|   | 
|    | 
| } |