<?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.panzhihua.service_community.dao.VolunteerTypeDao">
|
|
<resultMap type="com.panzhihua.service_community.entity.VolunteerType" id="VolunteerTypeMap">
|
<result property="id" column="id" />
|
<result property="name" column="name" />
|
<result property="creationTime" column="creation_time" />
|
<result property="updateTime" column="update_time" />
|
<result property="communityId" column="community_id" />
|
<result property="type" column="type" />
|
</resultMap>
|
|
<!-- 分页查询 -->
|
<select id="volunteerTypeGetList" resultMap="VolunteerTypeMap">
|
select
|
id,
|
name,
|
creation_time,
|
community_id,
|
type,
|
update_time
|
from volunteer_type
|
where type=#{type}
|
order by creation_time desc
|
</select>
|
|
<insert id="insertvolunteerType">
|
insert into volunteer_type
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="volunteerTypeVO.id != null">
|
id,
|
</if>
|
<if test="volunteerTypeVO.name != null">
|
name,
|
</if>
|
<if test="volunteerTypeVO.communityId != null">
|
community_id,
|
</if>
|
<if test="volunteerTypeVO.type != null">
|
type,
|
</if>
|
creation_time
|
</trim>
|
values
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="volunteerTypeVO.id != null">
|
#{volunteerTypeVO.id},
|
</if>
|
<if test="volunteerTypeVO.name != null">
|
#{volunteerTypeVO.name},
|
</if>
|
<if test="volunteerTypeVO.communityId != null">
|
#{volunteerTypeVO.communityId},
|
</if>
|
<if test="volunteerTypeVO.type != null">
|
#{volunteerTypeVO.type},
|
</if>
|
sysdate()
|
</trim>
|
</insert>
|
|
<update id="volunteerTypeUpdate">
|
update volunteer_type
|
<set>
|
<if test="volunteerTypeVO.id != null">
|
id=#{volunteerTypeVO.id},
|
</if>
|
<if test="volunteerTypeVO.name != null">
|
name=#{volunteerTypeVO.name},
|
</if>
|
<if test="volunteerTypeVO.communityId != null">
|
community_id=#{volunteerTypeVO.communityId},
|
</if>
|
<if test="volunteerTypeVO.type != null">
|
type=#{volunteerTypeVO.type},
|
</if>
|
update_time=sysdate()
|
</set>
|
where id = #{volunteerTypeVO.id}
|
</update>
|
|
<delete id="volunteerTypeDelete" parameterType="String">
|
delete from volunteer_type where id=#{id}
|
</delete>
|
|
</mapper>
|