|
@@ -19,6 +19,7 @@ import com.huiju.estateagents.event.EventBus;
|
19
|
19
|
import com.huiju.estateagents.mapper.*;
|
20
|
20
|
import com.huiju.estateagents.service.*;
|
21
|
21
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
22
|
+import lombok.extern.slf4j.Slf4j;
|
22
|
23
|
import org.apache.commons.collections.CollectionUtils;
|
23
|
24
|
import org.springframework.beans.factory.annotation.Autowired;
|
24
|
25
|
import org.springframework.context.ApplicationContext;
|
|
@@ -40,6 +41,7 @@ import java.util.stream.Collectors;
|
40
|
41
|
* @author jobob
|
41
|
42
|
* @since 2019-05-10
|
42
|
43
|
*/
|
|
44
|
+@Slf4j
|
43
|
45
|
@Service
|
44
|
46
|
public class TaPersonServiceImpl extends ServiceImpl<TaPersonMapper, TaPerson> implements ITaPersonService {
|
45
|
47
|
|
|
@@ -865,6 +867,8 @@ public class TaPersonServiceImpl extends ServiceImpl<TaPersonMapper, TaPerson> i
|
865
|
867
|
*/
|
866
|
868
|
@Override
|
867
|
869
|
public void authPhone(Integer orgId, String openid, String phone, String buildingId, String sceneId, String targetType, String targetId, String targetName, String promoter) throws Exception {
|
|
870
|
+ log.info("orgId={},openid={},phone={},buildingId={},sceneId={},targetType={},targetId={},targetName={},promoter={}",
|
|
871
|
+ orgId,openid,phone,buildingId,sceneId,targetType,targetId,targetName,promoter);
|
868
|
872
|
//
|
869
|
873
|
LocalDateTime now = LocalDateTime.now();
|
870
|
874
|
|