kongdeqiang
2026-02-26 5ba66844cb980f7f6b799f11f731ecd078a596ef
1
2
3
4
5
6
7
8
9
10
package com.boying.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.boying.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
public interface UserMapper extends BaseMapper<User> {
}