2022-06-28 19:04:14 +08:00
|
|
|
package com.engine.organization.mapper.resource;
|
|
|
|
|
|
|
|
|
|
import com.engine.organization.entity.hrmresource.param.HrmResourceSearchParam;
|
|
|
|
|
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 14:18:47 +08:00
|
|
|
List<HrmResourceVO> listAll(@Param("param")HrmResourceSearchParam param);
|
2022-06-28 19:04:14 +08:00
|
|
|
}
|