85 lines
3.9 KiB
XML
85 lines
3.9 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.ruoyi.ai.mapper.AiCustomerServiceMapper">
|
|
|
|
<resultMap type="AiCustomerService" id="AiCustomerServiceResult">
|
|
<result property="id" column="id" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="remark" column="remark" />
|
|
<result property="url" column="url" />
|
|
<result property="status" column="status" />
|
|
</resultMap>
|
|
|
|
<sql id="selectAiCustomerServiceVo">
|
|
select id, del_flag, create_by, create_time, update_by, update_time, remark, url, status from ai_customer_service
|
|
</sql>
|
|
|
|
<select id="selectAiCustomerServiceList" parameterType="AiCustomerService" resultMap="AiCustomerServiceResult">
|
|
<include refid="selectAiCustomerServiceVo"/>
|
|
<where>
|
|
<if test="url != null and url != ''"> and url = #{url}</if>
|
|
<if test="status != null "> and status = #{status}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectAiCustomerServiceById" parameterType="Long" resultMap="AiCustomerServiceResult">
|
|
<include refid="selectAiCustomerServiceVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertAiCustomerService" parameterType="AiCustomerService" useGeneratedKeys="true" keyProperty="id">
|
|
insert into ai_customer_service
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="delFlag != null and delFlag != ''">del_flag,</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>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="url != null">url,</if>
|
|
<if test="status != null">status,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="delFlag != null and delFlag != ''">#{delFlag},</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>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="url != null">#{url},</if>
|
|
<if test="status != null">#{status},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateAiCustomerService" parameterType="AiCustomerService">
|
|
update ai_customer_service
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</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>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="url != null">url = #{url},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteAiCustomerServiceById" parameterType="Long">
|
|
delete from ai_customer_service where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteAiCustomerServiceByIds" parameterType="String">
|
|
delete from ai_customer_service where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper> |