|
|
@@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="scoreType" column="score_type"/>
|
|
|
<result property="finishDate" column="finish_date"/>
|
|
|
<result property="score" column="score"/>
|
|
|
+ <result property="status" column="status"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="selectGxtOrderPersonList" parameterType="GxtOrderPerson" resultMap="GxtOrderPersonResult">
|
|
|
@@ -82,6 +83,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="userId != null">
|
|
|
AND t.user_id = #{userId}
|
|
|
</if>
|
|
|
+ <if test="status != null">
|
|
|
+ AND t.status = #{status}
|
|
|
+ </if>
|
|
|
<if test="orderCode != null and orderCode != ''">
|
|
|
AND t.order_code LIKE CONCAT( '%', #{orderCode}, '%' )
|
|
|
</if>
|