INSERT INTO univuserhonor(uid,totalpoint,userlevel,levelname,totalmoney,
goldmedalcount,silvermedalcount,bronzemedalcount,cupcount,flowercount,
totalscore,howmuch,studyduration,studynum,befollowcount,areaid)
VALUES (#{uid},#{totalpoint},#{userlevel},#{levelname},#{totalmoney},
#{goldmedalcount},#{silvermedalcount},#{bronzemedalcount},#{cupcount},#{flowercount},
#{totalscore},#{howmuch},#{studyduration},#{studynum},#{befollowcount},#{areaid})
update univuserhonor
set totalmoney = totalmoney + #{totalmoney},totalscore = totalscore + #{totalscore},
howmuch = howmuch + #{howmuch},totalpoint=totalpoint + #{totalpoint},
goldmedalcount=goldmedalcount+#{goldmedalcount},silvermedalcount=silvermedalcount+#{silvermedalcount},
bronzemedalcount=bronzemedalcount+#{bronzemedalcount},userlevel=#{userlevel},levelname=#{levelname}
where uid=#{uid}
update univuserhonor set befollowcount = befollowcount -1 where uid=#{uid}
update univuserhonor set befollowcount = befollowcount + 1 where uid= #{uid}