mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-18 09:16:40 +08:00
14 lines
285 B
Java
14 lines
285 B
Java
package com.ruoyi.system.mapper;
|
|
|
|
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysUserPost;
|
|
|
|
/**
|
|
* 用户与岗位关联表 数据层
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
public interface SysUserPostMapper extends BaseMapperPlus<SysUserPost> {
|
|
|
|
}
|