weaver-hrm-organization/src/com/engine/organization/service/PostService.java

56 lines
911 B
Java
Raw Normal View History

2022-05-13 10:32:33 +08:00
package com.engine.organization.service;
2022-05-13 17:10:00 +08:00
import com.engine.organization.entity.TreeData;
2022-05-13 10:32:33 +08:00
import com.engine.organization.entity.post.po.PostPO;
import java.util.Collection;
import java.util.Map;
/**
* @description: TODO
* @author:dxfeng
* @createTime: 2022/05/13
* @version: 1.0
*/
public interface PostService {
/**
* 新增职务分类
* @param postPO
* @return
*/
int savePost(PostPO postPO);
/**
* 更新职务分类信息
*
* @param postPO
* @return
*/
int updatePost(PostPO postPO);
/**
* 根据ID批量删除
*
* @param ids
*/
int deleteByIds(Collection<Long> ids);
/**
* 获取新增表单
*
* @param params
* @return
*/
Map<String, Object> getPostForm(Map<String, Object> params);
2022-05-13 17:10:00 +08:00
/**
* 获取左侧树
* @return
*/
TreeData getTreeData();
2022-05-13 10:32:33 +08:00
}