幼儿紧急联系人
This commit is contained in:
@ -0,0 +1,148 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.project.benyi.mapper.ByChildContactpeopleMapper">
|
||||
|
||||
<resultMap type="ByChildContactpeople" id="ByChildContactpeopleResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="childid" column="childid"/>
|
||||
<result property="fathername" column="fathername"/>
|
||||
<result property="fphone" column="fphone"/>
|
||||
<result property="foffphone" column="foffphone"/>
|
||||
<result property="mothername" column="mothername"/>
|
||||
<result property="mphone" column="mphone"/>
|
||||
<result property="moffphone" column="moffphone"/>
|
||||
<result property="grandfathername" column="grandfathername"/>
|
||||
<result property="gfgx" column="gfgx"/>
|
||||
<result property="gfphone" column="gfphone"/>
|
||||
<result property="gfoffphone" column="gfoffphone"/>
|
||||
<result property="gfaddress" column="gfaddress"/>
|
||||
<result property="grandmothername" column="grandmothername"/>
|
||||
<result property="gmgx" column="gmgx"/>
|
||||
<result property="gmphone" column="gmphone"/>
|
||||
<result property="gmaddress" column="gmaddress"/>
|
||||
<result property="gmoffphone" column="gmoffphone"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectByChildContactpeopleVo">
|
||||
select id, childid, fathername, fphone, foffphone, mothername, mphone, moffphone, grandfathername, gfgx, gfphone, gfoffphone, gfaddress, grandmothername, gmgx, gmphone, gmaddress, gmoffphone, create_time from by_child_contactpeople
|
||||
</sql>
|
||||
|
||||
<select id="selectByChildContactpeopleList" parameterType="ByChildContactpeople"
|
||||
resultMap="ByChildContactpeopleResult">
|
||||
<include refid="selectByChildContactpeopleVo"/>
|
||||
<where>
|
||||
<if test="childid != null ">and childid = #{childid}</if>
|
||||
<if test="fathername != null and fathername != ''">and fathername like concat('%', #{fathername}, '%')</if>
|
||||
<if test="fphone != null and fphone != ''">and fphone = #{fphone}</if>
|
||||
<if test="foffphone != null and foffphone != ''">and foffphone = #{foffphone}</if>
|
||||
<if test="mothername != null and mothername != ''">and mothername like concat('%', #{mothername}, '%')</if>
|
||||
<if test="mphone != null and mphone != ''">and mphone = #{mphone}</if>
|
||||
<if test="moffphone != null and moffphone != ''">and moffphone = #{moffphone}</if>
|
||||
<if test="grandfathername != null and grandfathername != ''">and grandfathername like concat('%',
|
||||
#{grandfathername}, '%')
|
||||
</if>
|
||||
<if test="gfgx != null and gfgx != ''">and gfgx = #{gfgx}</if>
|
||||
<if test="gfphone != null and gfphone != ''">and gfphone = #{gfphone}</if>
|
||||
<if test="gfoffphone != null and gfoffphone != ''">and gfoffphone = #{gfoffphone}</if>
|
||||
<if test="gfaddress != null and gfaddress != ''">and gfaddress = #{gfaddress}</if>
|
||||
<if test="grandmothername != null and grandmothername != ''">and grandmothername like concat('%',
|
||||
#{grandmothername}, '%')
|
||||
</if>
|
||||
<if test="gmgx != null and gmgx != ''">and gmgx = #{gmgx}</if>
|
||||
<if test="gmphone != null and gmphone != ''">and gmphone = #{gmphone}</if>
|
||||
<if test="gmaddress != null and gmaddress != ''">and gmaddress = #{gmaddress}</if>
|
||||
<if test="gmoffphone != null and gmoffphone != ''">and gmoffphone = #{gmoffphone}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectByChildContactpeopleById" parameterType="Long" resultMap="ByChildContactpeopleResult">
|
||||
<include refid="selectByChildContactpeopleVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertByChildContactpeople" parameterType="ByChildContactpeople">
|
||||
insert into by_child_contactpeople
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null ">id,</if>
|
||||
<if test="childid != null ">childid,</if>
|
||||
<if test="fathername != null and fathername != ''">fathername,</if>
|
||||
<if test="fphone != null and fphone != ''">fphone,</if>
|
||||
<if test="foffphone != null and foffphone != ''">foffphone,</if>
|
||||
<if test="mothername != null and mothername != ''">mothername,</if>
|
||||
<if test="mphone != null and mphone != ''">mphone,</if>
|
||||
<if test="moffphone != null and moffphone != ''">moffphone,</if>
|
||||
<if test="grandfathername != null and grandfathername != ''">grandfathername,</if>
|
||||
<if test="gfgx != null and gfgx != ''">gfgx,</if>
|
||||
<if test="gfphone != null and gfphone != ''">gfphone,</if>
|
||||
<if test="gfoffphone != null and gfoffphone != ''">gfoffphone,</if>
|
||||
<if test="gfaddress != null and gfaddress != ''">gfaddress,</if>
|
||||
<if test="grandmothername != null and grandmothername != ''">grandmothername,</if>
|
||||
<if test="gmgx != null and gmgx != ''">gmgx,</if>
|
||||
<if test="gmphone != null and gmphone != ''">gmphone,</if>
|
||||
<if test="gmaddress != null and gmaddress != ''">gmaddress,</if>
|
||||
<if test="gmoffphone != null and gmoffphone != ''">gmoffphone,</if>
|
||||
<if test="createTime != null ">create_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null ">#{id},</if>
|
||||
<if test="childid != null ">#{childid},</if>
|
||||
<if test="fathername != null and fathername != ''">#{fathername},</if>
|
||||
<if test="fphone != null and fphone != ''">#{fphone},</if>
|
||||
<if test="foffphone != null and foffphone != ''">#{foffphone},</if>
|
||||
<if test="mothername != null and mothername != ''">#{mothername},</if>
|
||||
<if test="mphone != null and mphone != ''">#{mphone},</if>
|
||||
<if test="moffphone != null and moffphone != ''">#{moffphone},</if>
|
||||
<if test="grandfathername != null and grandfathername != ''">#{grandfathername},</if>
|
||||
<if test="gfgx != null and gfgx != ''">#{gfgx},</if>
|
||||
<if test="gfphone != null and gfphone != ''">#{gfphone},</if>
|
||||
<if test="gfoffphone != null and gfoffphone != ''">#{gfoffphone},</if>
|
||||
<if test="gfaddress != null and gfaddress != ''">#{gfaddress},</if>
|
||||
<if test="grandmothername != null and grandmothername != ''">#{grandmothername},</if>
|
||||
<if test="gmgx != null and gmgx != ''">#{gmgx},</if>
|
||||
<if test="gmphone != null and gmphone != ''">#{gmphone},</if>
|
||||
<if test="gmaddress != null and gmaddress != ''">#{gmaddress},</if>
|
||||
<if test="gmoffphone != null and gmoffphone != ''">#{gmoffphone},</if>
|
||||
<if test="createTime != null ">#{createTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateByChildContactpeople" parameterType="ByChildContactpeople">
|
||||
update by_child_contactpeople
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="childid != null ">childid = #{childid},</if>
|
||||
<if test="fathername != null and fathername != ''">fathername = #{fathername},</if>
|
||||
<if test="fphone != null and fphone != ''">fphone = #{fphone},</if>
|
||||
<if test="foffphone != null and foffphone != ''">foffphone = #{foffphone},</if>
|
||||
<if test="mothername != null and mothername != ''">mothername = #{mothername},</if>
|
||||
<if test="mphone != null and mphone != ''">mphone = #{mphone},</if>
|
||||
<if test="moffphone != null and moffphone != ''">moffphone = #{moffphone},</if>
|
||||
<if test="grandfathername != null and grandfathername != ''">grandfathername = #{grandfathername},</if>
|
||||
<if test="gfgx != null and gfgx != ''">gfgx = #{gfgx},</if>
|
||||
<if test="gfphone != null and gfphone != ''">gfphone = #{gfphone},</if>
|
||||
<if test="gfoffphone != null and gfoffphone != ''">gfoffphone = #{gfoffphone},</if>
|
||||
<if test="gfaddress != null and gfaddress != ''">gfaddress = #{gfaddress},</if>
|
||||
<if test="grandmothername != null and grandmothername != ''">grandmothername = #{grandmothername},</if>
|
||||
<if test="gmgx != null and gmgx != ''">gmgx = #{gmgx},</if>
|
||||
<if test="gmphone != null and gmphone != ''">gmphone = #{gmphone},</if>
|
||||
<if test="gmaddress != null and gmaddress != ''">gmaddress = #{gmaddress},</if>
|
||||
<if test="gmoffphone != null and gmoffphone != ''">gmoffphone = #{gmoffphone},</if>
|
||||
<if test="createTime != null ">create_time = #{createTime},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteByChildContactpeopleById" parameterType="Long">
|
||||
delete from by_child_contactpeople where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByChildContactpeopleByIds" parameterType="String">
|
||||
delete from by_child_contactpeople where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
Reference in New Issue
Block a user