| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 | <?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.basicData.mapper.TFeesMapper">    <resultMap type="TFees" id="TFeesResult">        <result property="fId" column="f_id"/>        <result property="fNo" column="f_no"/>        <result property="fName" column="f_name"/>        <result property="fFeetype" column="f_feetype"/>        <result property="fFeeunitid" column="f_feeunitid"/>        <result property="fCurrency" column="f_currency"/>        <result property="fStatus" column="f_status"/>        <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="fDc" column="f_dc"/>        <result property="isModify" column="is_modify"/>        <result property="fTaxSort" column="f_tax_sort"/>        <result property="fTaxCode" column="f_tax_code"/>        <result property="fTaxRate" column="f_tax_rate"/>        <result property="fTaxTag" column="f_tax_tag"/>        <result property="fDiscounts" column="f_discounts"/>    </resultMap>    <sql id="selectTFeesVo">        select f_id,               f_no,               f_name,               f_feetype,               f_feeunitid,               f_currency,               f_status,               del_flag,               create_by,               create_time,               update_by,               update_time,               remark,               f_dc,               is_modify,               f_tax_sort,               f_tax_code,               f_tax_rate,               f_tax_tag,               f_discounts,               case when f_discounts = '0' then '是' else '否' end as fDiscountsName        from t_fees    </sql>    <select id="selectTFeesList" parameterType="TFees" resultMap="TFeesResult">        <include refid="selectTFeesVo"/>        <where>            <if test="fNo != null  and fNo != ''">and f_no like concat('%', #{fNo}, '%')</if>            <if test="fName != null  and fName != ''">and f_name like concat('%', #{fName}, '%')</if>            <if test="fFeetype != null  and fFeetype != ''">and f_feetype = #{fFeetype}</if>            <if test="fFeeunitid != null ">and f_feeunitid = #{fFeeunitid}</if>            <if test="isModify != null  and isModify != ''">and is_modify = #{isModify}</if>            <if test="fCurrency != null  and fCurrency != ''">and f_currency like concat('%', #{fCurrency}, '%')</if>            <if test="fStatus != null  and fStatus != ''">and f_status = #{fStatus}</if>            <if test="fDc != null  and fDc != ''">and f_dc like concat('%', #{fDc}, '%')</if>        </where>        ORDER BY CONVERT(f_name USING gbk) asc    </select>    <select id="selectTFeesById" parameterType="Long" resultMap="TFeesResult">        <include refid="selectTFeesVo"/>        where f_id = #{fId}    </select>    <select id="selectTFeesModify" parameterType="TFees" resultType="String">        select is_modify        from t_fees        where f_id = #{fId}    </select>    <insert id="insertTFees" parameterType="TFees" useGeneratedKeys="true" keyProperty="fId">        insert into t_fees        <trim prefix="(" suffix=")" suffixOverrides=",">            <if test="fNo != null and fNo != ''">f_no,</if>            <if test="fName != null and fName != ''">f_name,</if>            <if test="fFeetype != null">f_feetype,</if>            <if test="fFeeunitid != null">f_feeunitid,</if>            <if test="fCurrency != null">f_currency,</if>            <if test="fStatus != null">f_status,</if>            <if test="delFlag != null">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="fDc != null">f_dc,</if>            <if test="isModify != null">is_modify,</if>            <if test="fTaxSort != null">f_tax_sort,</if>            <if test="fTaxCode != null">f_tax_code,</if>            <if test="fTaxRate != null">f_tax_rate,</if>            <if test="fTaxTag != null">f_tax_tag,</if>            <if test="fDiscounts != null">f_discounts,</if>        </trim>        <trim prefix="values (" suffix=")" suffixOverrides=",">            <if test="fNo != null and fNo != ''">#{fNo},</if>            <if test="fName != null and fName != ''">#{fName},</if>            <if test="fFeetype != null">#{fFeetype},</if>            <if test="fFeeunitid != null">#{fFeeunitid},</if>            <if test="fCurrency != null">#{fCurrency},</if>            <if test="fStatus != null">#{fStatus},</if>            <if test="delFlag != null">#{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="fDc != null">#{fDc},</if>            <if test="isModify != null">#{isModify},</if>            <if test="fTaxSort != null">#{fTaxSort},</if>            <if test="fTaxCode != null">#{fTaxCode},</if>            <if test="fTaxRate != null">#{fTaxRate},</if>            <if test="fTaxTag != null">#{fTaxTag},</if>            <if test="fDiscounts != null">#{fDiscounts},</if>        </trim>    </insert>    <update id="updateTFees" parameterType="TFees">        update t_fees        <trim prefix="SET" suffixOverrides=",">            <if test="fNo != null and fNo != ''">f_no = #{fNo},</if>            <if test="fName != null and fName != ''">f_name = #{fName},</if>            <if test="fFeetype != null">f_feetype = #{fFeetype},</if>            <if test="fFeeunitid != null">f_feeunitid = #{fFeeunitid},</if>            <if test="fCurrency != null">f_currency = #{fCurrency},</if>            <if test="fStatus != null">f_status = #{fStatus},</if>            <if test="delFlag != null">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="fDc != null">f_dc = #{fDc},</if>            <if test="isModify != null">is_modify = #{isModify},</if>            <if test="fTaxSort != null">f_tax_sort = #{fTaxSort},</if>            <if test="fTaxCode != null">f_tax_code = #{fTaxCode},</if>            <if test="fTaxRate != null">f_tax_rate = #{fTaxRate},</if>            <if test="fTaxTag != null">f_tax_tag = #{fTaxTag},</if>            <if test="fDiscounts != null">f_discounts = #{fDiscounts},</if>        </trim>        where f_id = #{fId}    </update>    <delete id="deleteTFeesById" parameterType="Long">        delete        from t_fees        where f_id = #{fId}    </delete>    <delete id="deleteTFeesByIds" parameterType="String">        delete from t_fees where f_id in        <foreach item="fId" collection="array" open="(" separator="," close=")">            #{fId}        </foreach>    </delete>    <select id="checkFNoUnique" parameterType="String" resultMap="TFeesResult">        select f_id, f_no        from t_fees        where f_no = #{fNo}        limit 1    </select>    <select id="checkUFNnameUnique" parameterType="String" resultMap="TFeesResult">        select f_id, f_name        from t_fees        where f_name = #{fAame}        limit 1    </select>    <select id="selectTFeesByFName" parameterType="string" resultMap="TFeesResult">        select f_id, f_name        from t_fees        where f_name = #{fAame}    </select></mapper>
 |