select id, user_id, real_name, gender, birthday, id_card, specialty, work_experience, hospital, address, introduction, create_by, create_time, update_by, update_time from vet_personal_info
insert into vet_personal_info
user_id,
real_name,
gender,
birthday,
id_card,
specialty,
work_experience,
hospital,
address,
introduction,
create_by,
create_time,
update_by,
update_time,
#{userId},
#{realName},
#{gender},
#{birthday},
#{idCard},
#{specialty},
#{workExperience},
#{hospital},
#{address},
#{introduction},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update vet_personal_info
user_id = #{userId},
real_name = #{realName},
gender = #{gender},
birthday = #{birthday},
id_card = #{idCard},
specialty = #{specialty},
work_experience = #{workExperience},
hospital = #{hospital},
address = #{address},
introduction = #{introduction},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from vet_personal_info where id = #{id}
delete from vet_personal_info where id in
#{id}