You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
704 B
29 lines
704 B
package com.epmet.dao;
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
|
import com.epmet.dto.ChangeRelocationDTO;
|
|
import com.epmet.entity.ChangeRelocationEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 人员迁出表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-05-06
|
|
*/
|
|
@Mapper
|
|
public interface ChangeRelocationDao extends BaseDao<ChangeRelocationEntity> {
|
|
|
|
/**
|
|
* 人员迁出列表
|
|
*
|
|
* @param params
|
|
* @return java.util.List<com.epmet.dto.ChangeRelocationDTO>
|
|
* @author zhy
|
|
* @date 2022/5/12 17:45
|
|
*/
|
|
List<ChangeRelocationDTO> getRelocationList(Map<String, Object> params);
|
|
}
|
|
|