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