Browse Source

新增审核/撤销/归档/申诉等接口

Administrator 1 năm trước cách đây
mục cha
commit
86940eafe0

+ 1 - 3
ruoyi-system/src/main/java/com/ruoyi/system/domain/review/ReviewComments.java

@@ -49,8 +49,7 @@ public class ReviewComments extends BaseEntity
     @Excel(name = "审核时间", width = 30, dateFormat = "yyyy-MM-dd")
     private Date auditTime;
 
-    /** 审核意见附件URL */
-    @Excel(name = "审核意见附件URL")
+    /** 审核意见附件List */
     private  List<LoanApplicationFj> fjUrl;
 
     /** 审核意见图片多张使用逗号分隔 */
@@ -209,7 +208,6 @@ public class ReviewComments extends BaseEntity
             .append("auditType", getAuditType())
             .append("auditView", getAuditView())
             .append("auditTime", getAuditTime())
-            .append("fjUrl", getFjUrl())
             .append("imageUrl", getImageUrl())
             .append("createBy", getCreateBy())
             .append("createTime", getCreateTime())

+ 1 - 6
ruoyi-system/src/main/resources/mapper/system/ReviewCommentsMapper.xml

@@ -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>