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.
16 lines
311 B
16 lines
311 B
2 weeks ago
|
package com.wrj.driver.server.mapper;
|
||
|
|
||
7 days ago
|
import com.wrj.driver.server.entity.SysUser;
|
||
2 weeks ago
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 用户表; Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Automated procedures
|
||
|
* @since 2023-08-10
|
||
|
*/
|
||
7 days ago
|
public interface SysUserMapper extends BaseMapper<SysUser> {
|
||
2 weeks ago
|
}
|