liusheng
2024-02-23 52df965c9cbaa015520b4379393a0041eb9ae8da
ruoyi-project/src/main/resources/mapper/project/ServiceFundflowruleMapper.xml
@@ -4,7 +4,7 @@
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.mapper.ServiceFundflowruleMapper">
    
    <resultMap type="ServiceFundflowrule" id="ServiceFundflowruleResult">
    <resultMap type="com.ruoyi.project.domain.ServiceFundflowrule" id="ServiceFundflowruleResult">
        <result property="id"    column="ID"    />
        <result property="applytype"    column="ApplyType"    />
        <result property="checkuserno"    column="CheckUserNo"    />
@@ -13,13 +13,14 @@
        <result property="flowlevel"    column="FlowLevel"    />
        <result property="totallevel"    column="TotalLevel"    />
        <result property="fundtype"    column="FundType"    />
        <result property="mustAudite"    column="must_audite"    />
    </resultMap>
    <sql id="selectServiceFundflowruleVo">
        select ID, ApplyType, CheckUserNo, CheckUserName, VerificationDept, FlowLevel, TotalLevel, FundType from service_fundflowrule
    </sql>
    <select id="selectServiceFundflowruleList" parameterType="ServiceFundflowrule" resultMap="ServiceFundflowruleResult">
    <select id="selectServiceFundflowruleList" parameterType="com.ruoyi.project.domain.ServiceFundflowrule" resultMap="ServiceFundflowruleResult">
        <include refid="selectServiceFundflowruleVo"/>
        <where>
            <if test="applytype != null  and applytype != ''"> and ApplyType = #{applytype}</if>