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
624 B
Java
29 lines
624 B
Java
package com.engine.organization.mapper.personnelcard;
|
|
|
|
import com.engine.organization.entity.personnelcard.ResourceBaseTab;
|
|
import com.engine.organization.entity.personnelcard.UserCard;
|
|
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
|
|
*/
|
|
UserCard getUserById(@Param("id") Long id);
|
|
|
|
/**
|
|
* 获取自定义显示栏目
|
|
* @return
|
|
*/
|
|
List<ResourceBaseTab> getResourceBaseTabList();
|
|
}
|