com.zyy.common.service.BaseService Maven / Gradle / Ivy
package com.zyy.common.service;
import com.zyy.common.util.BaseModel;
import com.zyy.common.util.Page;
public interface BaseService {
/**
* 通用插入方法
*
* @param model 插入对象
*/
Page selectByPage(T model);
/**
* 通用插入方法
*
* @param model 插入对象
*/
void insert(T model);
/**
* 通用删除方法
*
* @param id 主键
*/
void deleteById(String id);
/**
* 通用修改方法
*
* @param model 修改对象
*/
void update(T model);
}