| 12345678910111213141516171819202122232425262728293031323334 |
- 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<PostEntity> entityList) throws Exception;
- /**
- * 查询岗位
- * @param post
- * @return
- */
- public Boolean findPostByPostName(PostEntity post);
- }
|