select * from info_user
insert into info_user
user_name,
phone,
nick_name,
user_type,
email,
sex,
avatar,
password,
status,
del_flag,
cid,
mycode,
thiscode,
commission,
annex,
audit_status,
tel_phone,
shij_status,
drivers_license,
driving_license,
vehicle_photos,
passport_photo,
bank_photo,
merchant_introduction,
offline,
address,
longitude,
latitude
#{userName},
#{phone},
#{nickName},
#{userType},
#{email},
#{sex},
#{avatar},
#{password},
#{status},
#{delFlag},
#{cid},
#{mycode},
#{thiscode},
#{commission},
#{annex},
#{auditStatus},
#{telPhone},
#{shijStatus},
#{driversLicense},
#{drivingLicense},
#{vehiclePhotos},
#{passportPhoto},
#{bankPhoto},
#{merchantIntroduction},
#{offline},
#{address},
#{longitude},
#{latitude}
update info_user
user_name = #{userName},
phone = #{phone},
nick_name = #{nickName},
user_type = #{userType},
email = #{email},
sex = #{sex},
avatar = #{avatar},
password = #{password},
status = #{status},
del_flag = #{delFlag},
cid = #{cid},
mycode = #{mycode},
thiscode = #{thiscode},
commission = #{commission},
annex = #{annex},
audit_status = #{auditStatus},
tel_phone = #{telPhone},
shij_status = #{shijStatus},
drivers_license = #{driversLicense},
driving_license = #{drivingLicense},
vehicle_photos = #{vehiclePhotos},
passport_photo = #{passportPhoto},
bank_photo = #{bankPhoto},
merchant_introduction = #{merchantIntroduction},
offline =#{offline},
address = #{address},
longitude = #{longitude},
latitude = #{latitude}
where user_id = #{userId}
update info_user SET del_flag=1 where user_id = #{userId}
update info_user SET del_flag=1 where user_id in
#{userId}