2020-07-20 10:41:32 +08:00
|
|
|
package com.ruoyi.system.mapper;
|
2020-02-13 10:48:51 +08:00
|
|
|
|
2022-01-12 21:22:26 +08:00
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
2020-07-20 10:41:32 +08:00
|
|
|
import com.ruoyi.system.domain.SysUserPost;
|
2020-02-13 10:48:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 用户与岗位关联表 数据层
|
2021-04-12 17:02:55 +08:00
|
|
|
*
|
2021-10-15 15:19:42 +08:00
|
|
|
* @author Lion Li
|
2020-02-13 10:48:51 +08:00
|
|
|
*/
|
2022-01-12 21:22:26 +08:00
|
|
|
public interface SysUserPostMapper extends BaseMapperPlus<SysUserPostMapper, SysUserPost, SysUserPost> {
|
2020-02-13 10:48:51 +08:00
|
|
|
|
|
|
|
}
|