您的位置:首页 > 健康 > 养生 > 万商云集公司是做什么_上海公司名义买房条件_广州seo优化公司排名_一个网站如何推广

万商云集公司是做什么_上海公司名义买房条件_广州seo优化公司排名_一个网站如何推广

2024/12/26 10:36:10 来源:https://blog.csdn.net/qq_32046111/article/details/143371937  浏览:    关键词:万商云集公司是做什么_上海公司名义买房条件_广州seo优化公司排名_一个网站如何推广
万商云集公司是做什么_上海公司名义买房条件_广州seo优化公司排名_一个网站如何推广

一、在 mapper 层自定义查询方法

@Mapper
public interface UserTableMapper extends BaseMapper<UserTableEntity> {/*** 自定义查询方法* @param username 用户名*/List<UserTableEntity> selectAllByUsername(@Param("username") String username);
}

@param 传参。

二、在 mapper.xml 文件中写下具体查询内容

一般是在 resoucesmapper 目录下自定义 xml 文件,我这边是 src/main/resources/mapper/UserTableMapper.xml

<mapper namespace="com.example.library.mapper.UserTableMapper"><sql id="Base_Column">id, username, password</sql><select id="selectAllByUsername" resultType="com.example.library.entity.UserTableEntity">select <include refid = "Base_Column"/>from sys_userwhere username = #{username}</select>
</mapper>

select id 对应方法名,resultType 是实体类,通过 #{} 使用方法的参数。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com