You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
365 B
18 lines
365 B
package com.wrj.driver.server.mapper;
|
|
|
|
import com.wrj.driver.server.entity.SysUser;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* <p>
|
|
* 用户表; Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author Automated procedures
|
|
* @since 2023-08-10
|
|
*/
|
|
|
|
@Mapper
|
|
public interface SysUserMapper extends BaseMapper<SysUser> {
|
|
}
|
|
|