|
|
@@ -17,6 +17,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="runScore" column="run_score" />
|
|
|
<result property="stopScore" column="stop_score" />
|
|
|
<result property="status" column="status" />
|
|
|
+ <result property="createTimeReal" column="create_time_real" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
@@ -25,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectGxtOrderScoreDetailVo">
|
|
|
- select id, user_id, nick_name, order_type, order_id, order_code, score_type, score, rate_score, run_score, stop_score, status, create_by, create_time, update_by, update_time, remark from gxt_order_score_detail
|
|
|
+ select id, user_id, nick_name, order_type, order_id, order_code, score_type, score, rate_score, run_score, stop_score, status, create_time_real, create_by, create_time, update_by, update_time, remark from gxt_order_score_detail
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectGxtOrderScoreDetailList" parameterType="GxtOrderScoreDetail" resultMap="GxtOrderScoreDetailResult">
|
|
|
@@ -42,6 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="runScore != null "> and run_score = #{runScore}</if>
|
|
|
<if test="stopScore != null "> and stop_score = #{stopScore}</if>
|
|
|
<if test="status != null "> and status = #{status}</if>
|
|
|
+ <if test="createTimeReal != null "> and create_time_real = #{createTimeReal}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
|
@@ -64,6 +66,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="runScore != null">run_score,</if>
|
|
|
<if test="stopScore != null">stop_score,</if>
|
|
|
<if test="status != null">status,</if>
|
|
|
+ <if test="createTimeReal != null">create_time_real,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
@@ -82,6 +85,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="runScore != null">#{runScore},</if>
|
|
|
<if test="stopScore != null">#{stopScore},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
+ <if test="createTimeReal != null">#{createTimeReal},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
@@ -104,6 +108,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="runScore != null">run_score = #{runScore},</if>
|
|
|
<if test="stopScore != null">stop_score = #{stopScore},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
+ <if test="createTimeReal != null">create_time_real = #{createTimeReal},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|