作者 朱兆平

上一个提交改user mapper 失误了 取消返回用户的password

... ... @@ -18,9 +18,12 @@
<result column="age" property="age" jdbcType="INTEGER" />
</resultMap>
<sql id="Base_Column_List" >
user_id, username, birthday, sex, address, state, mobilePhone, creatTime,
user_id, username, password, birthday, sex, address, state, mobilePhone, creatTime,
updateTime, userFace, realName, email, age
</sql>
<sql id="user_List" >
user_id, username, birthday, sex, address, state, mobilePhone,userFace, realName, email, age
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
<include refid="Base_Column_List" />
... ... @@ -35,7 +38,7 @@
</select>
<select id="selectAllUser" resultMap="BaseResultMap" >
select
<include refid="Base_Column_List" />
<include refid="user_List" />
from USERS
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
... ...