package cn.com.lzt.post.service; import java.io.Serializable; import java.util.List; import org.jeecgframework.core.common.service.CommonService; import cn.com.lzt.post.entity.PostEntity; public interface PostServiceI extends CommonService{ public void delete(PostEntity entity) throws Exception; public Serializable save(PostEntity entity) throws Exception; public void saveOrUpdate(PostEntity entity) throws Exception; /** * 逻辑删除 * */ public void logicDel(PostEntity entity) throws Exception; /** * 批量更新操作 * */ public void batchUpdate(List entityList) throws Exception; /** * 查询岗位 * @param post * @return */ public Boolean findPostByPostName(PostEntity post); }