17 lines
333 B
Java
17 lines
333 B
Java
package tech.riemann.ims.mapper.acl;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import tech.riemann.ims.entity.acl.UserBind;
|
|
|
|
/**
|
|
* 用户三方账号绑定 Mapper 接口
|
|
*
|
|
* @author Kerbores(kerbores@gmail.com)
|
|
*
|
|
* @since 2024-09-10 18:07:15
|
|
*/
|
|
public interface UserBindMapper extends BaseMapper<UserBind> {
|
|
|
|
}
|