com.zznote.basecommon.dao.TPostDao Maven / Gradle / Ivy
The newest version!
package com.zznote.basecommon.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zznote.basecommon.entity.system.TPost;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 岗位信息表
*
* @author zhangzhen
* @email [email protected]
* @date 2022-04-12 17:04:17
*/
@Mapper
public interface TPostDao extends BaseMapper {
List selectPostListByUserId(Long userId);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy