diff --git a/dq-financial-api/src/main/java/com/daqing/financial/guarantee/DgStatisticsControllerApi.java b/dq-financial-api/src/main/java/com/daqing/financial/guarantee/DgStatisticsControllerApi.java
deleted file mode 100644
index 7d8796ad..00000000
--- a/dq-financial-api/src/main/java/com/daqing/financial/guarantee/DgStatisticsControllerApi.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.daqing.financial.guarantee;
-
-import io.swagger.annotations.Api;
-
-/**
- * @auther River
- * @date 2020/11/5 14:29
- */
-@Api(value = "担保业务统计",tags = "提供业务统计增删改查的方法")
-public interface DgStatisticsControllerApi {
-}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgComplianceInvestigationController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgComplianceInvestigationController.java
index 2394f67a..c91e9461 100644
--- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgComplianceInvestigationController.java
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgComplianceInvestigationController.java
@@ -1,9 +1,14 @@
package com.daqing.financial.guarantee.controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-
-import org.springframework.web.bind.annotation.RestController;
+import com.daqing.financial.guarantee.model.request.DgComplianceInvestigationRequest;
+import com.daqing.financial.guarantee.model.response.DgComplianceInvestigationResponse;
+import com.daqing.financial.guarantee.service.IDgComplianceInvestigationService;
+import com.daqing.framework.model.response.ResponseResult;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
/**
*
@@ -14,7 +19,31 @@ import org.springframework.web.bind.annotation.RestController;
* @since 2020-11-05
*/
@RestController
-@RequestMapping("/dg-compliance-investigation")
+@RequestMapping("/compliance/investigation")
+@Api(value = "合规调查",tags = "合规调查")
public class DgComplianceInvestigationController {
+ @Autowired
+ private IDgComplianceInvestigationService iDgComplianceInvestigationService;
+
+ /**
+ * 列表
+ */
+ @GetMapping("/list")
+ @ApiOperation(value = "合规调查列表",notes = "合规调查列表",response = DgComplianceInvestigationResponse.class)
+ public ResponseResult list(@RequestParam("page") Integer page,
+ @RequestParam("size") Integer size, DgComplianceInvestigationRequest dgComplianceInvestigationRequest) {
+ return ResponseResult.SUCCESS(iDgComplianceInvestigationService.list(page,size,dgComplianceInvestigationRequest));
+ }
+
+ /**
+ * 调查同意
+ */
+ @PostMapping("/surveyConsent")
+ @ApiOperation(value = "调查同意",notes = "调查同意")
+ public ResponseResult surveyConsent(@RequestParam("iid") Integer iid,
+ @RequestParam("fileUrl") String fileUrl,@RequestParam("auditOpinion") String auditOpinion) {
+ Boolean result = iDgComplianceInvestigationService.surveyConsent(iid, fileUrl, auditOpinion);
+ return result ? ResponseResult.SUCCESS() : ResponseResult.FAIL();
+ }
}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgEfficiencyController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgEfficiencyController.java
new file mode 100644
index 00000000..7ca8f764
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgEfficiencyController.java
@@ -0,0 +1,15 @@
+package com.daqing.financial.guarantee.controller;
+
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * 流程效率
+ *
+ * @auther River
+ * @date 2020/11/5 14:20
+ */
+@RestController
+@RequestMapping("/guarantee/efficiency")
+public class DgEfficiencyController {
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgStatisticsController.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgStatisticsController.java
index 5e207256..1218375e 100644
--- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgStatisticsController.java
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgStatisticsController.java
@@ -1,11 +1,11 @@
package com.daqing.financial.guarantee.controller;
-import com.daqing.financial.guarantee.DgStatisticsControllerApi;
import com.daqing.financial.guarantee.model.request.DgStatisticsRequest;
import com.daqing.financial.guarantee.model.response.DgStatisticsListRefuseResponse;
import com.daqing.financial.guarantee.model.response.DgStatisticsListResponse;
import com.daqing.financial.guarantee.service.IDgStatisticsService;
import com.daqing.framework.model.response.ResponseResult;
+import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -23,7 +23,8 @@ import javax.servlet.http.HttpServletResponse;
*/
@RestController
@RequestMapping("/guarantee/statistics")
-public class DgStatisticsController implements DgStatisticsControllerApi {
+@Api(value = "担保业务统计",tags = "提供业务统计增删改查的方法")
+public class DgStatisticsController {
@Autowired
private IDgStatisticsService iDgStatisticsService;
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgComplianceInvestigationMapper.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgComplianceInvestigationMapper.java
index 8e8ff1a5..b848f8ea 100644
--- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgComplianceInvestigationMapper.java
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgComplianceInvestigationMapper.java
@@ -1,8 +1,15 @@
package com.daqing.financial.guarantee.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.daqing.financial.guarantee.model.request.DgComplianceInvestigationRequest;
+import com.daqing.financial.guarantee.model.response.DgComplianceInvestigationResponse;
import com.daqing.framework.domain.guarantee.DgComplianceInvestigation;
import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.Date;
/**
*
@@ -15,4 +22,15 @@ import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface DgComplianceInvestigationMapper extends BaseMapper {
+ IPage list(Page page, @Param("cr") DgComplianceInvestigationRequest dgComplianceInvestigationRequest);
+
+ Boolean surveyConsent(@Param("iid") Integer iid, @Param("fileUrl") String fileUrl,
+ @Param("auditOpinion") String auditOpinion, @Param("date")Date date,
+ @Param("empId") Integer empId);
+
+ Boolean surveyReturn(@Param("iid") Integer iid,@Param("auditOpinion") String auditOpinion,
+ @Param("empId") Integer empId,@Param("date") Date date);
+
+ Boolean surveyRefuse(@Param("iid") Integer iid,@Param("auditOpinion") String auditOpinion,
+ @Param("empId")Integer empId,@Param("date") Date date);
}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgEfficiencyMapper.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgEfficiencyMapper.java
new file mode 100644
index 00000000..eac03286
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/mapper/DgEfficiencyMapper.java
@@ -0,0 +1,18 @@
+package com.daqing.financial.guarantee.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.daqing.financial.guarantee.model.request.DgEfficiencyPersonRequest;
+import com.daqing.framework.domain.guarantee.DgApplyAmountInfo;
+import com.daqing.framework.domain.guarantee.po.DgEfficiencyPersonPO;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * @auther River
+ * @date 2020/11/10 11:30
+ */
+public interface DgEfficiencyMapper extends BaseMapper {
+
+ IPage personList(Page page, @Param("pr")DgEfficiencyPersonRequest dgEfficiencyPersonRequest);
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgComplianceInvestigationRequest.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgComplianceInvestigationRequest.java
new file mode 100644
index 00000000..ae1c5a45
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgComplianceInvestigationRequest.java
@@ -0,0 +1,24 @@
+package com.daqing.financial.guarantee.model.request;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.ToString;
+
+import java.io.Serializable;
+
+/**
+ * 合规调查请求参数
+ *
+ * @auther River
+ * @date 2020/11/11 16:16
+ */
+@Data
+@ToString
+public class DgComplianceInvestigationRequest implements Serializable {
+
+ @ApiModelProperty("流程状态,0:驳回,1:审批中")
+ private Integer status;
+
+ @ApiModelProperty("业务编号或者客户名称")
+ private String codeOrName;
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyPersonRequest.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyPersonRequest.java
new file mode 100644
index 00000000..7640d840
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyPersonRequest.java
@@ -0,0 +1,42 @@
+package com.daqing.financial.guarantee.model.request;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.ToString;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 业务效率个人请求参数
+ *
+ * @auther River
+ * @date 2020/11/11 10:39
+ */
+@Data
+@ToString
+public class DgEfficiencyPersonRequest implements Serializable {
+
+ @ApiModelProperty("申请时间,固定类型,0:今天,1:昨天,2:本周,3:本月,4:本年")
+ private Integer createFixedTime;
+
+ @ApiModelProperty("申请时间,自定义时间")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+ private Date createCustomTime;
+
+ @ApiModelProperty("流程状态,0->我发起,1->待审批,2->已审批,3->抄送我")
+ private Integer flowStatus;
+
+ @ApiModelProperty("提单人或者客户名称")
+ private String empOrName;
+
+ @ApiModelProperty("操作人id")
+ private Integer personId;
+
+ @ApiModelProperty("辅助字段,不用管,起始时间")
+ private String startTime;
+
+ @ApiModelProperty("辅助字段,不用管,结束时间")
+ private String endTime;
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyTeamRequest.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyTeamRequest.java
new file mode 100644
index 00000000..8ac26f5e
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/request/DgEfficiencyTeamRequest.java
@@ -0,0 +1,43 @@
+package com.daqing.financial.guarantee.model.request;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.ToString;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 业务效率团队请求参数
+ *
+ * @auther River
+ * @date 2020/11/10 16:00
+ */
+@Data
+@ToString
+public class DgEfficiencyTeamRequest implements Serializable {
+
+ @ApiModelProperty("申请时间,固定类型,0:今天,1:昨天,2:本周,3:本月,4:本年")
+ private Integer createFixedTime;
+
+ @ApiModelProperty("申请时间,自定义时间")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+ private Date createCustomTime;
+
+ @ApiModelProperty("流程状态,1->审核中,2->已审核,3->拒绝,4->驳回,5->撤销")
+ private Integer flowStatus;
+
+ @ApiModelProperty("提单人或者客户名称")
+ private String empOrName;
+
+ @ApiModelProperty("该团队(部门)下所有提单人(员工)")
+ private List empIds;
+
+ @ApiModelProperty("辅助字段,不用管,起始时间")
+ private String startTime;
+
+ @ApiModelProperty("辅助字段,不用管,结束时间")
+ private String endTime;
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgComplianceInvestigationResponse.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgComplianceInvestigationResponse.java
new file mode 100644
index 00000000..e211858e
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/DgComplianceInvestigationResponse.java
@@ -0,0 +1,54 @@
+package com.daqing.financial.guarantee.model.response;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.ToString;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 合规调查响应
+ *
+ * @auther River
+ * @date 2020/11/11 16:22
+ */
+@Data
+@ToString
+public class DgComplianceInvestigationResponse implements Serializable {
+
+ @ApiModelProperty("id")
+ private Integer id;
+
+ @ApiModelProperty("业务编号")
+ private String businessCode;
+
+ @ApiModelProperty("客户名称")
+ private String name;
+
+ @ApiModelProperty("联系电话")
+ private String phone;
+
+ @ApiModelProperty("业务类别")
+ private String businessType;
+
+ @ApiModelProperty("金额")
+ private Double applyAmount;
+
+ @ApiModelProperty("期限")
+ private String applyTime;
+
+ @ApiModelProperty("申请日期")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
+ private Date createTime;
+
+ @ApiModelProperty("当前审批人")
+ private String empName;
+
+ @ApiModelProperty("状态,0:,1:,2:,3:,4:")
+ private Integer status;
+
+ @ApiModelProperty("合规调查表id")
+ private Integer iId;
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgComplianceInvestigationService.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgComplianceInvestigationService.java
index c2b119ec..174de4e1 100644
--- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgComplianceInvestigationService.java
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgComplianceInvestigationService.java
@@ -1,7 +1,9 @@
package com.daqing.financial.guarantee.service;
import com.baomidou.mybatisplus.extension.service.IService;
+import com.daqing.financial.guarantee.model.request.DgComplianceInvestigationRequest;
import com.daqing.framework.domain.guarantee.DgComplianceInvestigation;
+import com.daqing.framework.utils.PageUtils;
/**
*
@@ -13,4 +15,11 @@ import com.daqing.framework.domain.guarantee.DgComplianceInvestigation;
*/
public interface IDgComplianceInvestigationService extends IService {
+ PageUtils list(Integer page, Integer size, DgComplianceInvestigationRequest dgComplianceInvestigationRequest);
+
+ Boolean surveyConsent(Integer iid, String fileUrl, String auditOpinion);
+
+ Boolean surveyReturn(Integer iid,String auditOpinion);
+
+ Boolean surveyRefuse(Integer iid,String auditOpinion);
}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgEfficiencyService.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgEfficiencyService.java
new file mode 100644
index 00000000..b52c529a
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/IDgEfficiencyService.java
@@ -0,0 +1,12 @@
+package com.daqing.financial.guarantee.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.daqing.framework.domain.guarantee.DgApplyAmountInfo;
+
+/**
+ * @auther River
+ * @date 2020/11/10 11:33
+ */
+public interface IDgEfficiencyService extends IService {
+
+}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgComplianceInvestigationServiceImpl.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgComplianceInvestigationServiceImpl.java
index 487a1605..a21e52c1 100644
--- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgComplianceInvestigationServiceImpl.java
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgComplianceInvestigationServiceImpl.java
@@ -1,11 +1,21 @@
package com.daqing.financial.guarantee.service.impl;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.daqing.financial.guarantee.mapper.DgComplianceInvestigationMapper;
+import com.daqing.financial.guarantee.model.request.DgComplianceInvestigationRequest;
+import com.daqing.financial.guarantee.model.response.DgComplianceInvestigationResponse;
import com.daqing.financial.guarantee.service.IDgComplianceInvestigationService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.daqing.framework.domain.guarantee.DgComplianceInvestigation;
+import com.daqing.framework.domain.guarantee.GuaranteeCode;
+import com.daqing.framework.exception.ExceptionCast;
+import com.daqing.framework.model.response.CommonCode;
+import com.daqing.framework.utils.PageUtils;
import org.springframework.stereotype.Service;
+import java.util.Date;
+
/**
*
* 合规调查 服务实现类
@@ -15,6 +25,67 @@ import org.springframework.stereotype.Service;
* @since 2020-11-05
*/
@Service
-public class DgComplianceInvestigationServiceImpl extends ServiceImpl implements IDgComplianceInvestigationService {
+public class DgComplianceInvestigationServiceImpl extends ServiceImpl
+ implements IDgComplianceInvestigationService {
+
+ /**
+ * 列表
+ */
+ @Override
+ public PageUtils list(Integer page, Integer size, DgComplianceInvestigationRequest dgComplianceInvestigationRequest) {
+ if (page == null || size == null){
+ page = 1;
+ size = 10;
+ }
+ IPage list = this.getBaseMapper().list(new Page(page, size), dgComplianceInvestigationRequest);
+
+ return new PageUtils(list);
+ }
+
+ /**
+ * 调查同意
+ */
+ @Override
+ public Boolean surveyConsent(Integer iid, String fileUrl, String auditOpinion) {
+ if (iid == null || fileUrl == null || fileUrl.length() == 0){
+ ExceptionCast.cast(CommonCode.INVALID_PARAM);
+ }
+ // 获取登录用户id
+ Integer userId = 1;
+ return this.getBaseMapper().surveyConsent(iid, fileUrl, auditOpinion, new Date(), userId);
+ }
+
+ /**
+ * 调查驳回
+ */
+ @Override
+ public Boolean surveyReturn(Integer iid, String auditOpinion) {
+ if (iid == null){
+ ExceptionCast.cast(CommonCode.INVALID_PARAM);
+ }
+ if (auditOpinion == null || auditOpinion.length() == 0){
+ ExceptionCast.cast(GuaranteeCode.COMPLIANCE_INVESTIGATION_REMARK_NOT_NULL);
+ }
+ // 获取登录用户id
+ Integer userId = 1;
+ // TODO 驳回至资产调查指派A/B角
+ return this.getBaseMapper().surveyReturn(iid,auditOpinion,userId,new Date());
+ }
+ /**
+ * 调查拒绝
+ */
+ @Override
+ public Boolean surveyRefuse(Integer iid, String auditOpinion) {
+ if (iid == null){
+ ExceptionCast.cast(CommonCode.INVALID_PARAM);
+ }
+ if (auditOpinion == null || auditOpinion.length() == 0){
+ ExceptionCast.cast(GuaranteeCode.COMPLIANCE_INVESTIGATION_REMARK_NOT_NULL);
+ }
+ // 获取登录用户id
+ Integer userId = 1;
+ // TODO 直接拒接至初始状态
+ return this.getBaseMapper().surveyRefuse(iid,auditOpinion,userId,new Date());
+ }
}
diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgEfficiencyServiceImpl.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgEfficiencyServiceImpl.java
new file mode 100644
index 00000000..d9594880
--- /dev/null
+++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgEfficiencyServiceImpl.java
@@ -0,0 +1,14 @@
+package com.daqing.financial.guarantee.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.daqing.financial.guarantee.mapper.DgEfficiencyMapper;
+import com.daqing.financial.guarantee.service.IDgEfficiencyService;
+import com.daqing.framework.domain.guarantee.DgApplyAmountInfo;
+
+/**
+ * @auther River
+ * @date 2020/11/10 11:34
+ */
+public class DgEfficiencyServiceImpl extends ServiceImpl implements IDgEfficiencyService {
+
+}
\ No newline at end of file
diff --git a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgComplianceInvestigationMapper.xml b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgComplianceInvestigationMapper.xml
index b69a38fa..56004860 100644
--- a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgComplianceInvestigationMapper.xml
+++ b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgComplianceInvestigationMapper.xml
@@ -14,4 +14,42 @@
+
+
+
+
+ UPDATE dg_compliance_investigation SET emp_id = #{empId},file = #{fileUrl},remark = #{auditOpinion},status = 2,update_time = #{date}
+ WHERE id = #{iid}
+
+
+
+
+ UPDATE dg_compliance_investigation SET emp_id = #{empId},remark = #{auditOpinion},status = 3,update_time = #{date}
+ WHERE id = #{iid}
+
+
+
+
+ UPDATE dg_compliance_investigation SET emp_id = #{empId},remark = #{auditOpinion},status = 4,update_time = #{date}
+ WHERE id = #{iid}
+
diff --git a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgEfficiencyMapper.xml b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgEfficiencyMapper.xml
new file mode 100644
index 00000000..8291f4b6
--- /dev/null
+++ b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgEfficiencyMapper.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgGuaranteeInvestigationMapper.xml b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgGuaranteeInvestigationMapper.xml
index 90494447..2cd658f3 100644
--- a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgGuaranteeInvestigationMapper.xml
+++ b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgGuaranteeInvestigationMapper.xml
@@ -18,5 +18,4 @@
-
diff --git a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgStatisticsMapper.xml b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgStatisticsMapper.xml
index 6a20fed8..56724aca 100644
--- a/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgStatisticsMapper.xml
+++ b/dq-financial-guarantee/src/main/resources/mapper/guarantee/DgStatisticsMapper.xml
@@ -16,6 +16,7 @@
+
+
-