| 
					
				 | 
			
			
				@@ -23,12 +23,14 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <id     column="id"                    jdbcType="INTEGER"   property="id" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="order_no"              jdbcType="VARCHAR"   property="orderNo" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="union_id"              jdbcType="VARCHAR"   property="unionId" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <result column="customer_no"           jdbcType="VARCHAR"   property="customerNo" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="customer_name"         jdbcType="VARCHAR"   property="customerName" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="usage_type"            jdbcType="VARCHAR"   property="usageType" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="pay_type"              jdbcType="VARCHAR"   property="payType" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="card_oils_type"        jdbcType="VARCHAR"   property="cardOilsType" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="amt"                   jdbcType="DECIMAL"   property="amt" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="present_amt"           jdbcType="DECIMAL"   property="presentAmt" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <result column="balance"               jdbcType="DECIMAL"   property="balance" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="create_time"           jdbcType="TIMESTAMP" property="createTime" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="station_id"            jdbcType="INTEGER"   property="stationId" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <result column="station_name"          jdbcType="VARCHAR"   property="stationName" /> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -145,6 +147,9 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="unionId !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 union_id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="customerNo !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                customer_no, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="customerName !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 customer_name, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -163,6 +168,9 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="presentAmt !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 present_amt, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="balance !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                balance, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="createTime !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 create_time, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -183,6 +191,9 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="unionId !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 #{unionId}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="customerNo !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                #{customerNo}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="customerName !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 #{customerName}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -201,6 +212,9 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="presentAmt !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 #{presentAmt}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <if test="balance !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                #{balance}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </if> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <if test="createTime !=null"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 #{createTime}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </if> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -222,12 +236,14 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             order_no, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             union_id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            customer_no, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             customer_name, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             usage_type, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             pay_type, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             card_oils_type, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             amt, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             present_amt, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            balance, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             create_time, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             station_id, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             station_name, 
			 |