first commit
This commit is contained in:
19
src/main/java/com/ctgu/alexapi/mapper/UsersMapper.java
Normal file
19
src/main/java/com/ctgu/alexapi/mapper/UsersMapper.java
Normal file
@ -0,0 +1,19 @@
|
||||
package com.ctgu.alexapi.mapper;
|
||||
|
||||
import com.ctgu.alexapi.entity.UsersEntity;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author Alex2
|
||||
* @description 针对表【t_users】的数据库操作Mapper
|
||||
* @createDate 2025-07-02 14:37:56
|
||||
* @Entity com.ctgu.alexapi.entity.UsersEntity
|
||||
*/
|
||||
public interface UsersMapper extends BaseMapper<UsersEntity> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user