wangfei
2024-07-24 44dd454d11a25d11494cf32737df1456cae47bf3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mes.userinfo.mapper;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.github.yulichang.base.MPJBaseMapper;
import com.mes.userinfo.entity.SysUser;
 
/**
 * <p>
 * 用户表 Mapper 接口
 * </p>
 *
 * @author zhoush
 * @since 2024-04-11
 */
@DS("hangzhoumes")
public interface SysUserMapper extends MPJBaseMapper<SysUser> {
 
}