78 lines
3.4 KiB
XML
78 lines
3.4 KiB
XML
<?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.muyu.vehicle.mapper.GroupMapper">
|
|
|
|
<resultMap type="com.muyu.vehicle.domain.Group" id="GroupResult">
|
|
<result property="id" column="id" />
|
|
<result property="groupName" column="group_name" />
|
|
<result property="remark" column="remark" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
</resultMap>
|
|
|
|
<sql id="selectGroupVo">
|
|
select id, group_name, remark, create_by, create_time, update_by, update_time from `group`
|
|
</sql>
|
|
|
|
<select id="selectGroupList" parameterType="com.muyu.vehicle.domain.Group" resultMap="GroupResult">
|
|
<include refid="selectGroupVo"/>
|
|
<where>
|
|
<if test="groupName != null and groupName != ''"> and group_name like concat('%', #{groupName}, '%')</if>
|
|
<if test="updateTime != null "> and update_time = #{updateTime}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectGroupById" parameterType="Long" resultMap="GroupResult">
|
|
<include refid="selectGroupVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertGroup" parameterType="com.muyu.vehicle.domain.Group" useGeneratedKeys="true" keyProperty="id">
|
|
insert into `group`
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="groupName != null">group_name,</if>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="groupName != null">#{groupName},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateGroup" parameterType="com.muyu.vehicle.domain.Group">
|
|
update `group`
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="groupName != null">group_name = #{groupName},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteGroupById" parameterType="Long">
|
|
delete from `group` where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteGroupByIds" parameterType="String">
|
|
delete from `group` where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|