Преглед изворни кода

金牛条件展示参数调整

yfh пре 3 недеља
родитељ
комит
f7b0d7ba96

+ 1 - 0
fs-service/src/main/java/com/fs/qw/mapper/QwExternalContactMapper.java

@@ -235,6 +235,7 @@ public interface QwExternalContactMapper extends BaseMapper<QwExternalContact> {
             "            <if test=\"userId != null  and userId != ''\"> and ec.user_id   like concat( #{userId}, '%') </if>\n" +
             "            <if test=\"qwUserName != null  and qwUserName != ''\"> and qu.qw_user_name   like concat( #{qwUserName}, '%') </if>\n" +
             "            <if test=\"externalUserId != null  and externalUserId != ''\"> and ec.external_user_id = #{externalUserId}</if>\n" +
+            "            <if test=\"wayId != null  and wayId != ''\"> and ec.way_id = #{wayId}</if>\n" +
             "            <if test=\"name != null  and name != ''\"> and ec.name like concat( #{name}, '%')</if>\n" +
             "            <if test=\"type != null \"> and ec.type = #{type}</if>\n" +
             "            <if test=\"gender != null \"> and ec.gender = #{gender}</if>\n" +

+ 1 - 0
fs-service/src/main/java/com/fs/qw/param/QwExternalContactParam.java

@@ -99,6 +99,7 @@ public class QwExternalContactParam {
     private String stageStatus;
     private String isBind;
     private String isBindMini;
+    private Long wayId;
 
     @JsonFormat(pattern = "yyyy-MM-dd")
     private Date createTime;