XiaoRuby
2023-09-08 9f87ca56f82c2352adbb7201a190ac944e6deeeb
1
2
3
4
5
6
7
8
9
10
11
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.User;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface UserMapper extends BaseMapper<User> {
}