Przeglądaj źródła

客户档案新增字段,
客户档案详情新增渠道相关

anderx 1 rok temu
rodzic
commit
0caa6d0adf

+ 1 - 1
src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

@@ -2396,7 +2396,7 @@ inner join(
 			   b.business_scope   businessScope,
 			   b.intended_project intendedProject,
 			   a.nickname,
-			   a.share_type      shareType,
+			   a.new_channel     newChannel,
 			   d.channel_type    channelType
 		from `user` a
 				 left join organization_identity b on a.id = b.uid

+ 5 - 5
src/main/java/com/goafanti/customer/bo/UserArchivesDetails.java

@@ -13,15 +13,15 @@ public class UserArchivesDetails extends UserArchives {
     private String intendedProject;
     private String nickname;
     private Integer myUser;
-    private Integer shareType;
+    private Integer newChannel;
     private Integer channelType;
 
-    public Integer getShareType() {
-        return shareType;
+    public Integer getNewChannel() {
+        return newChannel;
     }
 
-    public void setShareType(Integer shareType) {
-        this.shareType = shareType;
+    public void setNewChannel(Integer newChannel) {
+        this.newChannel = newChannel;
     }
 
     public Integer getChannelType() {