张延森 3 years ago
parent
commit
e23c6541e6

+ 1
- 1
pom.xml View File

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

+ 5
- 0
src/main/java/com/yunzhi/marketing/dto/AverageReportDTO.java View File

33
      * 性别
33
      * 性别
34
      */
34
      */
35
     private Integer sex;
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 View File

263
 
263
 
264
     IPage<TaPerson> getMarketingList(Page<TaBuildingDynamic> page,@Param("buildingId") String buildingId);
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 View File

687
         channelCustomer.setRecommendPerson(averageReportDTO.getPersonId());
687
         channelCustomer.setRecommendPerson(averageReportDTO.getPersonId());
688
         channelCustomer.setCreateDate(LocalDateTime.now());
688
         channelCustomer.setCreateDate(LocalDateTime.now());
689
         channelCustomer.setStatus("1");
689
         channelCustomer.setStatus("1");
690
+        channelCustomer.setRealtyConsultant(averageReportDTO.getRealtyConsultant());
690
         channelCustomer.setOrgId(averageReportDTO.getOrgId());
691
         channelCustomer.setOrgId(averageReportDTO.getOrgId());
691
         channelCustomer.setInstitutionId(getInstitutionId(averageReportDTO.getBuildingId()));
692
         channelCustomer.setInstitutionId(getInstitutionId(averageReportDTO.getBuildingId()));
692
         channelCustomerMapper.insert(channelCustomer);
693
         channelCustomerMapper.insert(channelCustomer);