14 lines
271 B
Java
Raw Normal View History

2020-07-20 10:41:32 +08:00
package com.ruoyi.system.mapper;
2020-02-13 10:48:51 +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
/**
* 用户与岗位关联表 数据层
*
2020-02-13 10:48:51 +08:00
* @author ruoyi
*/
public interface SysUserPostMapper extends BaseMapperPlus<SysUserPost> {
2020-02-13 10:48:51 +08:00
}