From 59fe81347beb1f16844defcf4d621ac710ea85a5 Mon Sep 17 00:00:00 2001 From: shijie <648688341@qq.com> Date: Thu, 17 Dec 2020 14:51:56 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DgApplyAmountInfoController.java | 3 - .../DgGuaranteeAssignUserResponse.java | 101 ++++++++++++++++++ .../response/GuaranteeDetailResponse.java | 2 +- .../impl/DgApplyAmountInfoServiceImpl.java | 8 +- .../DgGuaranteeAssignUserServiceImpl.java | 37 +++++-- 5 files changed, 135 insertions(+), 16 deletions(-) create mode 100644 dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgGuaranteeAssignUserResponse.java diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgApplyAmountInfoController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgApplyAmountInfoController.java index 1a5a7dd2..9c816553 100644 --- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgApplyAmountInfoController.java +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgApplyAmountInfoController.java @@ -154,14 +154,11 @@ public class DgApplyAmountInfoController implements DgApplyAmountInfoControllerA */ @GetMapping("/deleteServerFile") public boolean deleteServerFile(@RequestParam("filePath")String filePath){ - log.info("filePath=========="+filePath); boolean delete_flag = false; String certainPath =PromptSuccess.FILE_URL_PATH; filePath = certainPath + filePath; - System.out.println("filePath============"+filePath); File file = new File(filePath); if (!file.exists()) { - System.out.println("file==============="+file.getName()); return delete_flag; } try{ diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgGuaranteeAssignUserResponse.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgGuaranteeAssignUserResponse.java new file mode 100644 index 00000000..43717ad3 --- /dev/null +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgGuaranteeAssignUserResponse.java @@ -0,0 +1,101 @@ +package com.daqing.financial.guarantee.model.response; + +import com.baomidou.mybatisplus.annotation.*; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; +import java.util.List; + +/** + *
+ * 担保部记录 + *
+ * + * @author Qyq + * @since 2020-11-05 + */ +@Data +@TableName("dg_guarantee_assign_user") +public class DgGuaranteeAssignUserResponse implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 业务id + */ + private Integer businessId; + + /** + * 角色id + */ + private Integer roleId; + + /** + * 企业id + */ + private Integer companyId; + + /** + * 用户id + */ + private Integer empId; + + /** + * 类型(1:第一审批人 2:指派人AB角 3:第一审批人审核 3:经理) + */ + private Integer type; + + /** + * 状态(1:待指派 2:审核中 3:审核通过 4:审核不通过 5:驳回) + */ + private Integer status; + + /** + * 操作状态: 0->已发起;2->待处理;3->已处理; + */ + private Integer operatingStatus; + + /** + * 审核金额 + */ + private BigDecimal amount; + + /** + * 期限 + */ + private String term; + + /** + * 补充调查原因 + */ + private List