天眼接口查询下载接口等完善
parent
5a00ea8b6a
commit
d7d16c2f52
@ -1,9 +1,10 @@
|
|||||||
package com.glxp.udidl.admin.dao.tyapi;
|
package com.glxp.udidl.admin.dao.tyapi;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.udidl.admin.dao.BaseMapperPlus;
|
||||||
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface TyCompanyDetailMapper extends BaseMapper<TyCompanyDetailEntity> {
|
public interface TyCompanyDetailMapper extends BaseMapperPlus<TyCompanyDetailMapper, TyCompanyDetailEntity, TyCompanyDetailEntity> {
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package com.glxp.udidl.admin.dao.tyapi;
|
package com.glxp.udidl.admin.dao.tyapi;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.glxp.udidl.admin.dao.BaseMapperPlus;
|
||||||
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface TyContactCallMapper extends BaseMapper<TyContactCallEntity> {
|
public interface TyContactCallMapper extends BaseMapperPlus<TyContactCallMapper, TyContactCallEntity, TyContactCallEntity> {
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,17 @@
|
|||||||
package com.glxp.udidl.admin.dao.tyapi;
|
package com.glxp.udidl.admin.dao.tyapi;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.glxp.udidl.admin.dao.BaseMapperPlus;
|
||||||
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
||||||
|
import com.glxp.udidl.admin.req.tyapi.TyContactRequest;
|
||||||
|
import com.glxp.udidl.admin.res.tyapi.TyContactResponse;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface TyContactInfoMapper extends BaseMapper<TyContactInfoEntity> {
|
public interface TyContactInfoMapper extends BaseMapperPlus<TyContactInfoMapper, TyContactInfoEntity, TyContactInfoEntity> {
|
||||||
|
|
||||||
|
List<TyContactResponse> findGroup(TyContactRequest tyContactRequest);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.udidl.admin.req.tyapi;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TyBaseInfoRequest {
|
||||||
|
|
||||||
|
//企业名称
|
||||||
|
private String name;
|
||||||
|
//统一社会信用代码
|
||||||
|
private String creditCode;
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package com.glxp.udidl.admin.req.tyapi;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TyContactRequest {
|
||||||
|
private String supplierName;
|
||||||
|
private String creditCodeFk;
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package com.glxp.udidl.admin.res.tyapi;
|
||||||
|
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TySupplierEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TyBatchDlResponse {
|
||||||
|
|
||||||
|
List<TyContactResponse> tyContactResponses;
|
||||||
|
List<TyCompanyDetailEntity> tyCompanyDetailEntities;
|
||||||
|
List<TySupplierEntity> tySupplierEntities;
|
||||||
|
}
|
@ -0,0 +1,81 @@
|
|||||||
|
package com.glxp.udidl.admin.res.tyapi;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class TyContactResponse {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 电话
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "当前电话")
|
||||||
|
private String mainPhoneNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "注册地址")
|
||||||
|
private String regLocation;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 邮箱
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "邮箱")
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 网址
|
||||||
|
*/
|
||||||
|
@TableField(value = "websiteList")
|
||||||
|
@ApiModelProperty(value = "网址")
|
||||||
|
private String websiteList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 所属企业统一社会信用号
|
||||||
|
*/
|
||||||
|
@TableField(value = "creditCodeFk")
|
||||||
|
@ApiModelProperty(value = "所属企业统一社会信用号")
|
||||||
|
private String creditCodeFk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 所属企业名称
|
||||||
|
*/
|
||||||
|
@TableField(value = "supplierName")
|
||||||
|
@ApiModelProperty(value = "所属企业名称")
|
||||||
|
private String supplierName;
|
||||||
|
|
||||||
|
@TableField(value = "updateTime")
|
||||||
|
@ApiModelProperty(value = "更新时间")
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
|
||||||
|
@TableId(value = "id", type = IdType.INPUT)
|
||||||
|
@ApiModelProperty(value = "")
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 电话
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "电话")
|
||||||
|
private String phoneNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 号码来源
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "号码来源")
|
||||||
|
private String source;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 标签
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "标签")
|
||||||
|
private String tag;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,10 +1,57 @@
|
|||||||
package com.glxp.udidl.admin.service.tyapi;
|
package com.glxp.udidl.admin.service.tyapi;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import com.alibaba.fastjson2.JSON;
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
||||||
|
import com.glxp.udidl.admin.res.tyapi.CompanyBaseResponse;
|
||||||
|
import com.glxp.udidl.admin.res.tyapi.ContactResponse;
|
||||||
|
import com.glxp.udidl.admin.util.BeanCopyUtils;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.udidl.admin.dao.tyapi.TyCompanyDetailMapper;
|
import com.glxp.udidl.admin.dao.tyapi.TyCompanyDetailMapper;
|
||||||
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class TyCompanyDetailService extends ServiceImpl<TyCompanyDetailMapper, TyCompanyDetailEntity> {
|
public class TyCompanyDetailService extends ServiceImpl<TyCompanyDetailMapper, TyCompanyDetailEntity> {
|
||||||
|
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
TyDlHttpClient tyDlHttpClient;
|
||||||
|
@Resource
|
||||||
|
TyCompanyDetailMapper tyCompanyDetailMapper;
|
||||||
|
|
||||||
|
public TyCompanyDetailEntity download(String company) {
|
||||||
|
if (tyCompanyDetailMapper.exists(new QueryWrapper<TyCompanyDetailEntity>().eq("name", company))) {
|
||||||
|
log.error(company + "企业详细信息已存在!");
|
||||||
|
} else {
|
||||||
|
CompanyBaseResponse companyBaseResponse = tyDlHttpClient.getBaseInfo(company);
|
||||||
|
if (companyBaseResponse.getErrorCode() == 0) {
|
||||||
|
CompanyBaseResponse.ResultDTO resultDTO = companyBaseResponse.getResult();
|
||||||
|
TyCompanyDetailEntity tyCompanyDetailEntity = new TyCompanyDetailEntity();
|
||||||
|
BeanUtil.copyProperties(resultDTO, tyCompanyDetailEntity);
|
||||||
|
if (CollUtil.isNotEmpty(resultDTO.getHistoryNameList())) {
|
||||||
|
tyCompanyDetailEntity.setHistoryNameList(StringUtils.join(resultDTO.getHistoryNameList(), ","));
|
||||||
|
}
|
||||||
|
CompanyBaseResponse.ResultDTO.IndustryAllDTO industryAllDTO = resultDTO.getIndustryAll();
|
||||||
|
if (industryAllDTO != null) {
|
||||||
|
tyCompanyDetailEntity.setIndustryAll(JSON.toJSONString(industryAllDTO));
|
||||||
|
}
|
||||||
|
tyCompanyDetailMapper.insert(tyCompanyDetailEntity);
|
||||||
|
} else {
|
||||||
|
log.error(company + "下载企业信息失败!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<TyCompanyDetailEntity> tyCompanyDetailEntities = tyCompanyDetailMapper.selectList(new QueryWrapper<TyCompanyDetailEntity>().eq("name", company));
|
||||||
|
if (CollUtil.isNotEmpty(tyCompanyDetailEntities))
|
||||||
|
return tyCompanyDetailEntities.get(0);
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,62 @@
|
|||||||
package com.glxp.udidl.admin.service.tyapi;
|
package com.glxp.udidl.admin.service.tyapi;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
import com.glxp.udidl.admin.dao.tyapi.TyContactCallMapper;
|
||||||
import com.glxp.udidl.admin.dao.tyapi.TyContactInfoMapper;
|
import com.glxp.udidl.admin.dao.tyapi.TyContactInfoMapper;
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||||
|
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
||||||
|
import com.glxp.udidl.admin.req.tyapi.TyContactRequest;
|
||||||
|
import com.glxp.udidl.admin.res.tyapi.ContactResponse;
|
||||||
|
import com.glxp.udidl.admin.res.tyapi.TyContactResponse;
|
||||||
|
import com.glxp.udidl.admin.util.BeanCopyUtils;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class TyContactInfoService extends ServiceImpl<TyContactInfoMapper, TyContactInfoEntity> {
|
public class TyContactInfoService extends ServiceImpl<TyContactInfoMapper, TyContactInfoEntity> {
|
||||||
|
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
TyDlHttpClient tyDlHttpClient;
|
||||||
|
@Resource
|
||||||
|
TyContactInfoMapper tyContactInfoMapper;
|
||||||
|
@Resource
|
||||||
|
TyContactCallMapper tyContactCallMapper;
|
||||||
|
|
||||||
|
|
||||||
|
public List<TyContactResponse> download(String company) {
|
||||||
|
if (tyContactInfoMapper.exists(new QueryWrapper<TyContactInfoEntity>().eq("supplierName", company))) {
|
||||||
|
log.error(company + "企业联系方式已存在重复下载!");
|
||||||
|
} else {
|
||||||
|
ContactResponse contactResponse = tyDlHttpClient.getContact(company);
|
||||||
|
if (contactResponse.getErrorCode() == 0) {
|
||||||
|
ContactResponse.ResultDTO resultDTO = contactResponse.getResult();
|
||||||
|
TyContactInfoEntity tyContactInfoEntity = new TyContactInfoEntity();
|
||||||
|
BeanUtil.copyProperties(resultDTO, tyContactInfoEntity);
|
||||||
|
tyContactInfoEntity.setSupplierName(company);
|
||||||
|
tyContactInfoMapper.insert(tyContactInfoEntity);
|
||||||
|
List<ContactResponse.ResultDTO.AllCallsDTO> allCallsDTOS = resultDTO.getAllCalls();
|
||||||
|
if (CollUtil.isNotEmpty(allCallsDTOS)) {
|
||||||
|
List<TyContactCallEntity> tyContactCallEntities = BeanCopyUtils.copyList(allCallsDTOS, TyContactCallEntity.class);
|
||||||
|
if (CollUtil.isNotEmpty(tyContactCallEntities)) {
|
||||||
|
for (TyContactCallEntity tyContactCallEntity : tyContactCallEntities) {
|
||||||
|
tyContactCallEntity.setContactIdFk(tyContactInfoEntity.getId());
|
||||||
|
tyContactCallEntity.setSupplierName(company);
|
||||||
|
}
|
||||||
|
tyContactCallMapper.insertBatch(tyContactCallEntities);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
TyContactRequest tyContactRequest = new TyContactRequest();
|
||||||
|
tyContactRequest.setSupplierName(company);
|
||||||
|
List<TyContactResponse> tyContactInfoEntities = tyContactInfoMapper.findGroup(tyContactRequest);
|
||||||
|
return tyContactInfoEntities;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue