浏览代码

企微客户添加下次联系时间

xgb 1 月之前
父节点
当前提交
474400dde9

+ 4 - 0
fs-service/src/main/java/com/fs/qw/domain/QwExternalContact.java

@@ -151,4 +151,8 @@ public class QwExternalContact extends BaseEntity
     // 是否被邀请进群0否1是
     private Integer joinGroup;
 
+    // 下次联系时间
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private Date nextContactTime;
+
 }

+ 4 - 0
fs-service/src/main/java/com/fs/qw/vo/QwExternalContactVO.java

@@ -139,4 +139,8 @@ public class QwExternalContactVO {
      * 联系我分组名称
      */
     private String wayGroupName;
+
+    // 下次联系时间
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private Date nextContactTime;
 }

+ 1 - 0
fs-service/src/main/resources/mapper/qw/QwExternalContactMapper.xml

@@ -356,6 +356,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="levelType != null">level_type = #{levelType},</if>
             <if test="firstTime != null">first_time = #{firstTime},</if>
             <if test="registerTime != null">register_time = #{registerTime},</if>
+            <if test="nextContactTime != null">next_contact_time = #{nextContactTime},</if>
         </trim>
         where id = #{id}
     </update>