2022-06-28 19:04:14 +08:00
|
|
|
package com.engine.organization.mapper.resource;
|
|
|
|
|
|
2022-06-29 16:57:45 +08:00
|
|
|
|
2022-10-20 09:07:32 +08:00
|
|
|
import com.engine.organization.entity.hrmresource.po.HrmResourcePO;
|
2022-06-29 14:18:47 +08:00
|
|
|
import com.engine.organization.entity.hrmresource.vo.HrmResourceVO;
|
2022-06-28 19:04:14 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Date 2022/6/28
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface ResourceMapper {
|
|
|
|
|
|
2022-06-29 15:21:36 +08:00
|
|
|
List<HrmResourceVO> listAll(@Param("ids")List<Long> ids);
|
2022-10-20 09:07:32 +08:00
|
|
|
|
|
|
|
|
List<HrmResourcePO> getResourceListByJobId(@Param("jobId") Long jobId);
|
|
|
|
|
|
|
|
|
|
int updateResourceJob(@Param("originalJobId") Long originalJobId, @Param("targetJobId") Long targetJobId, @Param("parentComp") Long parentComp, @Param("parentDept") Long parentDept, @Param("ecCompany") Long ecCompany, @Param("ecDepartment") Long ecDepartment);
|
|
|
|
|
|
|
|
|
|
HrmResourcePO getResourceById(@Param("id") String id);
|
2022-06-28 19:04:14 +08:00
|
|
|
}
|