87 lines
4.5 KiB
XML
87 lines
4.5 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.priceVerification.mapper.QuotHjMapper">
|
||
|
|
||
|
<resultMap type="QuotHj" id="QuotHjResult">
|
||
|
<result property="quotHjId" column="quot_hj_id" />
|
||
|
<result property="quotHjCode" column="quot_hj_code" />
|
||
|
<result property="quotHjPricingType" column="quot_hj_pricing_type" />
|
||
|
<result property="quotHjPricingDate" column="quot_hj_pricing_date" />
|
||
|
<result property="quotHjRemark" column="quot_hj_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="selectQuotHjVo">
|
||
|
select quot_hj_id, quot_hj_code, quot_hj_pricing_type, quot_hj_pricing_date, quot_hj_remark, create_by, create_time, update_by, update_time from quot_hj
|
||
|
</sql>
|
||
|
|
||
|
<select id="selectQuotHjList" parameterType="QuotHj" resultMap="QuotHjResult">
|
||
|
<include refid="selectQuotHjVo"/>
|
||
|
<where>
|
||
|
<if test="quotHjCode != null and quotHjCode != ''"> and quot_hj_code like concat('%', #{quotHjCode}, '%')</if>
|
||
|
<if test="params.beginQuotHjPricingDate != null and params.beginQuotHjPricingDate != '' and params.endQuotHjPricingDate != null and params.endQuotHjPricingDate != ''"> and quot_hj_pricing_date between #{params.beginQuotHjPricingDate} and #{params.endQuotHjPricingDate}</if>
|
||
|
</where>
|
||
|
</select>
|
||
|
|
||
|
<select id="selectQuotHjByQuotHjId" parameterType="String" resultMap="QuotHjResult">
|
||
|
<include refid="selectQuotHjVo"/>
|
||
|
where quot_hj_id = #{quotHjId}
|
||
|
</select>
|
||
|
|
||
|
<insert id="insertQuotHj" parameterType="QuotHj">
|
||
|
insert into quot_hj
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="quotHjId != null">quot_hj_id,</if>
|
||
|
<if test="quotHjCode != null">quot_hj_code,</if>
|
||
|
<if test="quotHjPricingType != null">quot_hj_pricing_type,</if>
|
||
|
<if test="quotHjPricingDate != null">quot_hj_pricing_date,</if>
|
||
|
<if test="quotHjRemark != null">quot_hj_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="quotHjId != null">#{quotHjId},</if>
|
||
|
<if test="quotHjCode != null">#{quotHjCode},</if>
|
||
|
<if test="quotHjPricingType != null">#{quotHjPricingType},</if>
|
||
|
<if test="quotHjPricingDate != null">#{quotHjPricingDate},</if>
|
||
|
<if test="quotHjRemark != null">#{quotHjRemark},</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="updateQuotHj" parameterType="QuotHj">
|
||
|
update quot_hj
|
||
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
<if test="quotHjCode != null">quot_hj_code = #{quotHjCode},</if>
|
||
|
<if test="quotHjPricingType != null">quot_hj_pricing_type = #{quotHjPricingType},</if>
|
||
|
<if test="quotHjPricingDate != null">quot_hj_pricing_date = #{quotHjPricingDate},</if>
|
||
|
<if test="quotHjRemark != null">quot_hj_remark = #{quotHjRemark},</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 quot_hj_id = #{quotHjId}
|
||
|
</update>
|
||
|
|
||
|
<delete id="deleteQuotHjByQuotHjId" parameterType="String">
|
||
|
delete from quot_hj where quot_hj_id = #{quotHjId}
|
||
|
</delete>
|
||
|
|
||
|
<delete id="deleteQuotHjByQuotHjIds" parameterType="String">
|
||
|
delete from quot_hj where quot_hj_id in
|
||
|
<foreach item="quotHjId" collection="array" open="(" separator="," close=")">
|
||
|
#{quotHjId}
|
||
|
</foreach>
|
||
|
</delete>
|
||
|
</mapper>
|