You cannot 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
616 B
Java
29 lines
616 B
Java
3 years ago
|
package com.engine.organization.mapper.personnelcard;
|
||
|
|
||
|
import com.engine.organization.entity.personnelcard.ResourceBaseTab;
|
||
|
import com.engine.organization.entity.personnelcard.User;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author:dxfeng
|
||
|
* @createTime: 2022/10/08
|
||
|
* @version: 1.0
|
||
|
*/
|
||
|
public interface PersonnelCardMapper {
|
||
|
/**
|
||
|
* 获取人员卡片User对象
|
||
|
*
|
||
|
* @param id
|
||
|
* @return
|
||
|
*/
|
||
|
User getUserById(@Param("id") Long id);
|
||
|
|
||
|
/**
|
||
|
* 获取自定义显示栏目
|
||
|
* @return
|
||
|
*/
|
||
|
List<ResourceBaseTab> getResourceBaseTabList();
|
||
|
}
|