2020-07-20 10:41:32 +08:00
|
|
|
package com.ruoyi.system.mapper;
|
2020-02-13 10:48:51 +08:00
|
|
|
|
2021-05-14 13:01:18 +08:00
|
|
|
import com.ruoyi.common.core.page.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
|
|
|
*
|
2020-02-13 10:48:51 +08:00
|
|
|
* @author ruoyi
|
|
|
|
*/
|
2021-05-14 13:01:18 +08:00
|
|
|
public interface SysUserPostMapper extends BaseMapperPlus<SysUserPost> {
|
2020-02-13 10:48:51 +08:00
|
|
|
|
|
|
|
}
|