|
@@ -8,6 +8,8 @@
|
|
<result column="wares_type" jdbcType="VARCHAR" property="waresType" />
|
|
<result column="wares_type" jdbcType="VARCHAR" property="waresType" />
|
|
<result column="wares_name" jdbcType="VARCHAR" property="waresName" />
|
|
<result column="wares_name" jdbcType="VARCHAR" property="waresName" />
|
|
<result column="wares_id" jdbcType="INTEGER" property="waresId" />
|
|
<result column="wares_id" jdbcType="INTEGER" property="waresId" />
|
|
|
|
+ <result column="wares_pic" jdbcType="VARCHAR" property="waresPic" />
|
|
|
|
+ <result column="wares_detail" jdbcType="VARCHAR" property="waresDetail" />
|
|
<result column="union_id" jdbcType="VARCHAR" property="unionId" />
|
|
<result column="union_id" jdbcType="VARCHAR" property="unionId" />
|
|
<result column="customer_name" jdbcType="VARCHAR" property="customerName" />
|
|
<result column="customer_name" jdbcType="VARCHAR" property="customerName" />
|
|
<result column="exchange_num" jdbcType="INTEGER" property="exchangeNum" />
|
|
<result column="exchange_num" jdbcType="INTEGER" property="exchangeNum" />
|
|
@@ -19,7 +21,7 @@
|
|
|
|
|
|
<!--查询列-->
|
|
<!--查询列-->
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
- id, integral_order_no, wares_type, wares_name, wares_name, wares_id, union_id, customer_name, exchange_num, exchange_time,
|
|
|
|
|
|
+ id, integral_order_no, wares_type, wares_name, wares_name, wares_id, wares_pic, wares_detail, union_id, customer_name, exchange_num, exchange_time,
|
|
status, integral, station_id
|
|
status, integral, station_id
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
@@ -55,6 +57,12 @@
|
|
<if test="waresId !=null">
|
|
<if test="waresId !=null">
|
|
wares_id,
|
|
wares_id,
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="waresPic !=null">
|
|
|
|
+ wares_pic,
|
|
|
|
+ </if>
|
|
|
|
+ <if test="waresDetail !=null">
|
|
|
|
+ wares_detail,
|
|
|
|
+ </if>
|
|
<if test="unionId !=null">
|
|
<if test="unionId !=null">
|
|
union_id,
|
|
union_id,
|
|
</if>
|
|
</if>
|
|
@@ -93,6 +101,12 @@
|
|
<if test="waresId !=null">
|
|
<if test="waresId !=null">
|
|
#{waresId},
|
|
#{waresId},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="waresPic !=null">
|
|
|
|
+ #{waresPic},
|
|
|
|
+ </if>
|
|
|
|
+ <if test="waresDetail !=null">
|
|
|
|
+ #{waresDetail},
|
|
|
|
+ </if>
|
|
<if test="unionId !=null">
|
|
<if test="unionId !=null">
|
|
#{unionId},
|
|
#{unionId},
|
|
</if>
|
|
</if>
|