select a.id, a.name, a.sex, a.identity_card, a.phone, a.type, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.remark, a.birthday, a.nick_name, a.height, a.weight, a.ranking from health_person a
insert into health_person
id,name,type,create_by,create_time,update_by,update_time,del_flag,remark,birthday,nick_name,height,weight,ranking,sex,identity_card,phone,#{id},#{name},#{type},#{createBy},#{createTime},#{updateBy},#{updateTime},#{delFlag},#{remark},#{birthday},#{nickName},#{height},#{weight},#{ranking},#{sex},#{identityCard},#{phone},
update health_person
name = #{name},type = #{type},create_by = #{createBy},create_time = #{createTime},update_by = #{updateBy},update_time = #{updateTime},del_flag = #{delFlag},remark = #{remark},birthday = #{birthday},nick_name = #{nickName},height = #{height},weight = #{weight},ranking = #{ranking},sex = #{sex},identity_card = #{identityCard},phone = #{phone},
where id = #{id}
delete from health_person where id = #{id}
delete from health_person where id in
#{id}
update health_person set del_flag='1' where id = #{id}
update health_person set del_flag='1' where id in
#{id}