36 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.6 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.BdAgentMapper">
 | |
| 
 | |
|     <!-- 通用查询映射结果 -->
 | |
|     <resultMap id="BaseResultMap" type="com.hzs.common.domain.system.config.BdAgent">
 | |
|         <id column="PK_ID" property="pkId" />
 | |
|     <result column="DEL_FLAG" property="delFlag" />
 | |
|     <result column="PK_COUNTRY" property="pkCountry" />
 | |
|     <result column="PK_CREATOR" property="pkCreator" />
 | |
|     <result column="CREATION_TIME" property="creationTime" />
 | |
|     <result column="PK_MODIFIED" property="pkModified" />
 | |
|     <result column="MODIFIED_TIME" property="modifiedTime" />
 | |
|         <result column="AGENT_NAME" property="agentName" />
 | |
|         <result column="PK_TRANSACTION" property="pkTransaction" />
 | |
|         <result column="AGENT_VALUE" property="agentValue" />
 | |
|         <result column="CENSUS_VALUE" property="censusValue" />
 | |
|         <result column="START_VALUE" property="startValue" />
 | |
|         <result column="PK_GRADE" property="pkGrade" />
 | |
|         <result column="PK_AWARDS" property="pkAwards" />
 | |
|         <result column="REGISTER_AUTHORITY" property="registerAuthority" />
 | |
|     </resultMap>
 | |
| 
 | |
|     <!-- 通用查询结果列 -->
 | |
|     <sql id="Base_Column_List">
 | |
|         DEL_FLAG,
 | |
|         PK_COUNTRY,
 | |
|         PK_CREATOR,
 | |
|         CREATION_TIME,
 | |
|         PK_MODIFIED,
 | |
|         MODIFIED_TIME,
 | |
|         PK_ID, AGENT_NAME, PK_TRANSACTION, AGENT_VALUE, CENSUS_VALUE, START_VALUE, PK_GRADE, PK_AWARDS, REGISTER_AUTHORITY
 | |
|     </sql>
 | |
| 
 | |
| </mapper>
 |