|
|
@@ -8,6 +8,14 @@
|
|
|
values
|
|
|
(#{userId},#{gender},#{signature},#{following},#{follower})
|
|
|
</insert>
|
|
|
+ <insert id="saveAll1" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into user_measurements
|
|
|
+ (`height`,`weight`,`bust`,`waist`,`hips`,`thigh`)
|
|
|
+ values
|
|
|
+ <foreach collection="list" item="item" index="index" separator=",">
|
|
|
+ (#{item.height},#{item.weight},#{item.bust},#{item.waist},#{item.hips},#{item.thigh})
|
|
|
+ </foreach>
|
|
|
+ </insert>
|
|
|
|
|
|
<update id="updateSetFollowingCountIncr">
|
|
|
update user_profile
|