weaver-hrm-organization/src/com/engine/organization/mapper/resource/ResourceMapper.java

19 lines
370 B
Java
Raw Normal View History

2022-06-28 19:04:14 +08:00
package com.engine.organization.mapper.resource;
2022-06-29 16:57:45 +08:00
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-06-28 19:04:14 +08:00
}