insert into team_group_type(team_group_id,team_type) values(#{id},#{teamType}) insert into team_person(team_id,name,id_card,phone,sex,work_type,face_url,is_team_leader) values (#{id},#{name},#{idCard},#{phone},#{sex},#{workTypeId},#{faceUrl},#{isTeamLeader}) update team_group_type set team_type = #{teamType} where team_group_id = #{id} update pm_org_info set name = #{teamGroupName} where id = #{id} update team_person set name = #{name},id_card = #{idCard},phone = #{phone},sex = #{sex},work_type = #{workType},face_url = #{faceUrl} where id = #{id} delete from pm_org_info where id = #{id} delete from team_group_type where team_group_id = #{id} delete from team_person where id = #{id}