1 Star 0 Fork 2

俊临天下 / 123兼职网

forked from chen / 123兼职网 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
UserMapper.xml 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
atun 提交于 2019-06-11 08:56 . 代码
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ptj.dao.UserMapper">
<!-- 用户登录验证 -->
<select id="userLogin" resultType="user">
select * from user where userphone=#{userphone} and password=#{password}
</select>
<!-- 用户注册 -->
<insert id="userRegister">
insert into user(username,userphone,password,money) values(#{username},#{userphone},#{password},0)
</insert>
<!-- 用户信息完善 -->
<insert id="addUser">
update user set userimg=#{userimg},sex=#{sex},idcard=#{idcard} where id=#{id}
</insert>
<!-- 用户信息修改 -->
<update id="updateUser">
update user
<set><if test="username !=null and !username.equals('')">username=#{username}</if>
<if test="userimg !=null and !userimg.equals('')">,userimg=#{userimg}</if>
<if test="userphone !=null and !userphone.equals('')">,userphone=#{userphone}</if>
<if test="password !=null and !password.equals('')">,password=#{password}</if>
<if test="sex !=null and !sex.equals('')">,sex=#{sex}</if>
<if test="idcard !=null and !idcard.equals('')">,idcard=#{idcard}</if>
</set>
where id=#{id}
</update>
<!-- 头像 -->
<!-- <update id="updateUser">
update user
<set>
<if test="userimg !=null and !userimg.equals('')">userimg=#{userimg}</if>
</set>
where id=#{id}
</update> -->
<!-- 用户删除 -->
<delete id="deleteuser">
delete from user where id=#{id}
</delete>
<!-- 根据手机号查用户 -->
<select id="selectUserByPhone" resultType="user">
select * from user where userphone=#{userphone}
</select>
<!-- 根据name查用户 -->
<select id="selectUserByName" resultType="user">
select * from user where username=#{username}
</select>
<!-- 根据id查用户 -->
<select id="selectUserByid" resultType="user">
select * from user where id=#{id}
</select>
</mapper>
1
https://gitee.com/yangjuns/123_parttime_network.git
git@gitee.com:yangjuns/123_parttime_network.git
yangjuns
123_parttime_network
123兼职网
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891