31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			1.2 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.hzs.system.config.mapper.BdWithdrawalProcessMapper"> | ||
|  | 
 | ||
|  |     <!-- 通用查询映射结果 --> | ||
|  |     <resultMap id="BaseResultMap" type="com.hzs.common.domain.system.config.BdWithdrawalProcess"> | ||
|  |         <id column="PK_ID" property="pkId" /> | ||
|  |     <result column="DEL_FLAG" property="delFlag" /> | ||
|  |     <result column="PK_COUNTRY" property="pkCountry" /> | ||
|  |     <result column="CREATION_TIME" property="creationTime" /> | ||
|  |     <result column="MODIFIED_TIME" property="modifiedTime" /> | ||
|  |     <result column="PK_CREATOR" property="pkCreator" /> | ||
|  |     <result column="PK_MODIFIED" property="pkModified" /> | ||
|  |         <result column="SERVICE_RATIO" property="serviceRatio" /> | ||
|  |         <result column="SERVICE_TYPE" property="serviceType" /> | ||
|  |         <result column="EFFECTIVE_DATE" property="effectiveDate" /> | ||
|  |     </resultMap> | ||
|  | 
 | ||
|  |     <!-- 通用查询结果列 --> | ||
|  |     <sql id="Base_Column_List"> | ||
|  |         DEL_FLAG, | ||
|  |         PK_COUNTRY, | ||
|  |         CREATION_TIME, | ||
|  |         MODIFIED_TIME, | ||
|  |         PK_CREATOR, | ||
|  |         PK_MODIFIED, | ||
|  |         PK_ID, SERVICE_RATIO, SERVICE_TYPE, EFFECTIVE_DATE | ||
|  |     </sql> | ||
|  | 
 | ||
|  | </mapper> |