|  |  | 
 |  |  | "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"    /> | 
 |  |  | 
 |  |  |         <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> |