张延森 3 年之前
父節點
當前提交
e23c6541e6

+ 1
- 1
pom.xml 查看文件

@@ -10,7 +10,7 @@
10 10
 	</parent>
11 11
 	<groupId>com.yunzhi</groupId>
12 12
 	<artifactId>marketing</artifactId>
13
-	<version>v1.0.36</version>
13
+	<version>v1.0.38</version>
14 14
 	<name>marketing-cloud</name>
15 15
 	<description>新联康营销云</description>
16 16
 

+ 5
- 0
src/main/java/com/yunzhi/marketing/dto/AverageReportDTO.java 查看文件

@@ -33,4 +33,9 @@ public class AverageReportDTO {
33 33
      * 性别
34 34
      */
35 35
     private Integer sex;
36
+
37
+    /**
38
+     * 置业顾问-内场接待
39
+     */
40
+    private String realtyConsultant;
36 41
 }

+ 1
- 1
src/main/java/com/yunzhi/marketing/mapper/TaPersonMapper.java 查看文件

@@ -263,5 +263,5 @@ public interface TaPersonMapper extends BaseMapper<TaPerson> {
263 263
 
264 264
     IPage<TaPerson> getMarketingList(Page<TaBuildingDynamic> page,@Param("buildingId") String buildingId);
265 265
 
266
-    TaPerson getByPhone(@Param("personId") String phone);
266
+    TaPerson getByPhone(@Param("phone") String phone);
267 267
 }

+ 1
- 0
src/main/java/com/yunzhi/marketing/service/impl/TaRecommendCustomerServiceImpl.java 查看文件

@@ -687,6 +687,7 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
687 687
         channelCustomer.setRecommendPerson(averageReportDTO.getPersonId());
688 688
         channelCustomer.setCreateDate(LocalDateTime.now());
689 689
         channelCustomer.setStatus("1");
690
+        channelCustomer.setRealtyConsultant(averageReportDTO.getRealtyConsultant());
690 691
         channelCustomer.setOrgId(averageReportDTO.getOrgId());
691 692
         channelCustomer.setInstitutionId(getInstitutionId(averageReportDTO.getBuildingId()));
692 693
         channelCustomerMapper.insert(channelCustomer);