You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
| 
											2 years ago
										 | <?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="org.ils.order.mapper.IlsOrderFeeMapper"> | ||
|  | 
 | ||
|  |     <!-- 通用查询映射结果 --> | ||
|  |     <resultMap id="BaseResultMap" type="org.ils.order.entity.IlsOrderFeeDO"> | ||
|  |         <id column="id" property="id" /> | ||
|  |         <result column="order_id" property="orderId" /> | ||
|  |         <result column="con_code" property="conCode" /> | ||
|  |         <result column="ref_code" property="refCode" /> | ||
|  |         <result column="customer_id" property="customerId" /> | ||
|  |         <result column="charge_name" property="chargeName" /> | ||
|  |         <result column="charge_amount" property="chargeAmount" /> | ||
|  |         <result column="charge_type" property="chargeType" /> | ||
|  |         <result column="charge_log" property="chargeLog" /> | ||
|  |         <result column="updated_time" property="updatedTime" /> | ||
|  |         <result column="created_time" property="createdTime" /> | ||
|  |         <result column="create_by" property="createBy" /> | ||
|  |         <result column="update_by" property="updateBy" /> | ||
|  |     </resultMap> | ||
|  | 
 | ||
|  |     <!-- 通用查询结果列 --> | ||
|  |     <sql id="Base_Column_List"> | ||
|  |         id, order_id, con_code, ref_code, customer_id, charge_name, charge_amount, charge_type, charge_log, updated_time, created_time, create_by, update_by | ||
|  |     </sql> | ||
|  | 
 | ||
|  | </mapper> |