|
@@ -12,7 +12,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="auditType" column="audit_type" />
|
|
|
<result property="auditView" column="audit_view" />
|
|
|
<result property="auditTime" column="audit_time" />
|
|
|
- <result property="fjUrl" column="fj_url" />
|
|
|
<result property="imageUrl" column="image_url" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
@@ -22,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectReviewCommentsVo">
|
|
|
- select review_comments_id, loan_application_id, loan_application_number, audit_schedule, audit_type, audit_view, audit_time, fj_url, image_url, create_by, create_time, update_by, update_time, remark from review_comments
|
|
|
+ select review_comments_id, loan_application_id, loan_application_number, audit_schedule, audit_type, audit_view, audit_time, image_url, create_by, create_time, update_by, update_time, remark from review_comments
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectReviewCommentsList" parameterType="ReviewComments" resultMap="ReviewCommentsResult">
|
|
@@ -34,7 +33,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="auditType != null and auditType != ''"> and audit_type = #{auditType}</if>
|
|
|
<if test="auditView != null and auditView != ''"> and audit_view = #{auditView}</if>
|
|
|
<if test="auditTime != null "> and audit_time = #{auditTime}</if>
|
|
|
- <if test="fjUrl != null and fjUrl != ''"> and fj_url = #{fjUrl}</if>
|
|
|
<if test="imageUrl != null and imageUrl != ''"> and image_url = #{imageUrl}</if>
|
|
|
</where>
|
|
|
order by create_time
|
|
@@ -54,7 +52,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="auditType != null and auditType != ''">audit_type,</if>
|
|
|
<if test="auditView != null">audit_view,</if>
|
|
|
<if test="auditTime != null">audit_time,</if>
|
|
|
- <!--<if test="fjUrl != null">fj_url,</if>-->
|
|
|
<if test="imageUrl != null">image_url,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -69,7 +66,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="auditType != null and auditType != ''">#{auditType},</if>
|
|
|
<if test="auditView != null">#{auditView},</if>
|
|
|
<if test="auditTime != null">#{auditTime},</if>
|
|
|
- <!--<if test="fjUrl != null">#{fjUrl},</if>-->
|
|
|
<if test="imageUrl != null">#{imageUrl},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -88,7 +84,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="auditType != null and auditType != ''">audit_type = #{auditType},</if>
|
|
|
<if test="auditView != null">audit_view = #{auditView},</if>
|
|
|
<if test="auditTime != null">audit_time = #{auditTime},</if>
|
|
|
- <if test="fjUrl != null">fj_url = #{fjUrl},</if>
|
|
|
<if test="imageUrl != null">image_url = #{imageUrl},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|