insert into hr_user_info(
userName, uniqueIdentificationAccount, provinceId,
cityId, schoolId, phone,account,password,roleId,creationTime,token)
values(
#{userName}, #{uniqueIdentificationAccount}, #{provinceId},
#{cityId}, #{schoolId},#{phone}, #{account},#{password},#{roleId},now(),#{token})
update hr_user_info
account = #{account},
countries = #{countries},
cityId = #{cityId},
dateBirth = #{dateBirth},
documenttype = #{documenttype},
educationDegree = #{educationDegree},
IDNumber = #{idNumber},
provinceId = #{provinceId},
sex = #{sex},
userName = #{userName},
schoolId = #{schoolId},
phone = #{phone},
updateTime = now()
WHERE userId = #{userId};
INSERT INTO hr_user_info ( userName,email,phone,uniqueIdentificationAccount, schoolId, account,password, roleId,isdel,creationTime,token)
VALUES
( #{userName},#{email},#{phone},#{uniqueIdentificationAccount}, #{schoolId}, #{account}, #{password}, 4 ,0,now(),#{token})
insert into hr_user_info(
userName, uniqueIdentificationAccount, phone,account,password,roleId, schoolId,creationTime,token)
values
(#{userName}, #{uniqueIdentificationAccount},
#{phone}, #{account},#{password},#{roleId},
#{schoolId},now(),#{token})
INSERT INTO hr_user_info ( account, userName, roleId, phone, email, uniqueIdentificationAccount, schoolId,creationTime,password,token)
VALUES
(#{account},#{userName},#{roleId},#{phone},#{email},#{uniqueIdentificationAccount},#{schoolId},now(),#{password},#{token})
UPDATE
hr_user_info
SET
password = #{password}
WHERE
userId = #{userId}
UPDATE
student stu,
hr_user_info u
SET
u.disableAccount = #{disableAccount}
WHERE
stu.studentId = #{studentId}
AND
stu.userId = u.userId
UPDATE hr_user_info
account = #{account},
userName = #{userName},
phone = #{phone},
email = #{email},
schoolId = #{schoolAppellationId},
roleId = #{roleId},
updateTime = now()
WHERE userId = #{userId};
UPDATE hr_user_info u
SET
u.account = '00',u.phone = null
WHERE userId = #{userId}
update hr_user_info set `password` = #{password} WHERE userId = #{userId} AND isdel = 0
UPDATE hr_user_info SET isdel = 0 ,disableAccount = 0 WHERE userId BETWEEN 519 AND 538 AND (isdel = 1 OR disableAccount = 1)