<?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.ComMngVolunteerSkillMapper">
|
|
<resultMap type="com.panzhihua.service_community.model.dos.ComMngVolunteerSkill" id="ComMngVolunteerSkillMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="communityId" column="community_id" jdbcType="INTEGER"/>
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
<result property="createAt" column="create_at" jdbcType="TIMESTAMP"/>
|
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
<result property="updateAt" column="update_at" jdbcType="TIMESTAMP"/>
|
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComMngVolunteerSkillVo">
|
select
|
id, community_id, name, remark, create_at, create_by, update_at, update_by
|
from com_mng_volunteer_skill
|
where id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComMngVolunteerSkillVo">
|
select
|
cmvs.id, cmvs.community_id, cmvs.name, IFNULL(su.`name`,su.nick_name) as createByName, cmvs.remark, cmvs.create_at, cmvs.create_by, cmvs.update_at, cmvs.update_by
|
from com_mng_volunteer_skill as cmvs
|
left join sys_user as su on su.user_id = cmvs.create_by
|
<where>
|
<if test="dto.id != null">
|
and cmvs.id = #{dto.id}
|
</if>
|
<if test="dto.keyWord!=null and dto.keyWord!=''">
|
and cmvs.name like concat('%',#{dto.keyWord},'%')
|
</if>
|
<if test="dto.communityId != null">
|
and cmvs.community_id = #{dto.communityId}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and cmvs.name = #{dto.name}
|
</if>
|
<if test="dto.remark != null and dto.remark != ''">
|
and cmvs.remark = #{dto.remark}
|
</if>
|
<if test="dto.createAt != null">
|
and cmvs.create_at = #{dto.createAt}
|
</if>
|
<if test="dto.createBy != null">
|
and cmvs.create_by = #{dto.createBy}
|
</if>
|
<if test="dto.updateAt != null">
|
and cmvs.update_at = #{dto.updateAt}
|
</if>
|
<if test="dto.updateBy != null">
|
and cmvs.update_by = #{dto.updateBy}
|
</if>
|
</where>
|
order by cmvs.create_at desc
|
</select>
|
|
<insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
|
insert into com_mng_volunteer_skill(community_id, name, remark, create_at, create_by, update_at, update_by)
|
values
|
<foreach collection="entities" item="entity" separator=",">
|
(#{entity.communityId}, #{entity.name}, #{entity.remark}, #{entity.createAt}, #{entity.createBy},
|
#{entity.updateAt}, #{entity.updateBy})
|
</foreach>
|
</insert>
|
|
<insert id="insertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
insert into com_mng_volunteer_skill(community_id, name, remark, create_at, create_by, update_at, update_by)
|
values
|
<foreach collection="entities" item="entity" separator=",">
|
(#{entity.communityId}, #{entity.name}, #{entity.remark}, #{entity.createAt}, #{entity.createBy},
|
#{entity.updateAt}, #{entity.updateBy})
|
</foreach>
|
on duplicate key update
|
community_id = values(community_id),
|
name = values(name),
|
remark = values(remark),
|
create_at = values(create_at),
|
create_by = values(create_by),
|
update_at = values(update_at),
|
update_by = values(update_by)
|
</insert>
|
|
<select id="queryAll" resultType="com.panzhihua.common.model.vos.common.ComMngVolunteerSkillVo">
|
select
|
id, community_id, name, remark, create_at, create_by, update_at, update_by
|
from com_mng_volunteer_skill
|
<where>
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.communityId != null">
|
and community_id = #{dto.communityId}
|
</if>
|
<if test="dto.name != null and dto.name != ''">
|
and name = #{dto.name}
|
</if>
|
<if test="dto.remark != null and dto.remark != ''">
|
and remark = #{dto.remark}
|
</if>
|
<if test="dto.createAt != null">
|
and create_at = #{dto.createAt}
|
</if>
|
<if test="dto.createBy != null">
|
and create_by = #{dto.createBy}
|
</if>
|
<if test="dto.updateAt != null">
|
and update_at = #{dto.updateAt}
|
</if>
|
<if test="dto.updateBy != null">
|
and update_by = #{dto.updateBy}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
</mapper>
|