This commit is contained in:
裴浩宇 2020-01-07 18:20:44 +08:00
parent 327d8794a0
commit ef684c0e9f

View File

@ -8,4 +8,25 @@
or (mobile = #{userName} and pass_word = #{passWord})
</select>
<!--注册提交-->
<insert id="registerSub" parameterType="map">
INSERT INTO ebuy_user
VALUES
(
( SELECT RIGHT ( RAND( ), 16 ) ),
#{userName},
#{passWord},
'',
'',
'',
#{mobile},
'',
'00',
now( ),
'',
'00',
'0',
( SELECT RIGHT ( RAND( ), 16 ) )
);
</insert>
</mapper>