jianghaiyue
2025-10-14 8c1f46e9136937017f230b9c1a8c2c5748c1e5f6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.algo.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.algo.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface UserMapper extends BaseMapper<User> {
 
 
}