Selaa lähdekoodia

1.业务数据保险公司 详情 添加对接人传参

wuhp 1 vuosi sitten
vanhempi
commit
6504e76ee6

+ 3 - 0
src/main/java/com/ydtech/modules/admin/model/vo/TaskStatisticsVo.java

@@ -149,4 +149,7 @@ public class TaskStatisticsVo implements Serializable {
     @ApiModelProperty(value = "管理人Ids")
     private List<String> leaderIds;
 
+    @ApiModelProperty(value = "对接人")
+    private String dockingPerson;
+
 }

+ 6 - 0
src/main/resources/mapper/modules/order/InsAreaCompanyMapper.xml

@@ -2630,6 +2630,12 @@
         <if test="vo.quotationStatus != null and vo.quotationStatus != ''">
             and iac.orderstatus  =#{vo.quotationStatus}
         </if>
+
+
+        <if test="vo.dockingPerson != null and vo.dockingPerson != ''">
+            and agree.docking_person  =#{vo.dockingPerson}
+        </if>
+
         <if test="vo.deptIds != null and vo.deptIds != '' and vo.deptIds.size() > 0">
             AND io.deptid  in
             <foreach collection="vo.deptIds" item="item" open="(" separator="," close=")">