cn.foxtech.common.entity.service.user.UserMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fox-edge-server-common-entity-service Show documentation
Show all versions of fox-edge-server-common-entity-service Show documentation
fox-edge-server-common-entity-service
The newest version!
/* ----------------------------------------------------------------------------
* Copyright (c) Guangzhou Fox-Tech Co., Ltd. 2020-2024. All rights reserved.
* --------------------------------------------------------------------------- */
package cn.foxtech.common.entity.service.user;
import cn.foxtech.common.entity.entity.UserEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
//在对应的Mapper 接口上 基础基本的 BaseMapper T是对应的pojo类
@Repository //告诉容器你是持久层的 @Repository是spring提供的注释,能够册成Bean
public interface UserMapper extends BaseMapper {
//所有的crud都编写完成了
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy