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