天眼接口查询下载接口等完善
parent
5a00ea8b6a
commit
d7d16c2f52
@ -1,9 +1,10 @@
|
||||
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.TyCompanyDetailEntity;
|
||||
import org.apache.ibatis.annotations.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;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.dao.BaseMapperPlus;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||
import org.apache.ibatis.annotations.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;
|
||||
|
||||
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.req.tyapi.TyContactRequest;
|
||||
import com.glxp.udidl.admin.res.tyapi.TyContactResponse;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@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;
|
||||
|
||||
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 com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.dao.tyapi.TyCompanyDetailMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
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;
|
||||
|
||||
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.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.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
|
||||
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;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,19 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.glxp.udidl.admin.dao.tyapi.TyContactInfoMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table ty_contact_info-->
|
||||
<id column="id" jdbcType="VARCHAR" property="id" />
|
||||
<result column="phoneNumber" jdbcType="VARCHAR" property="phoneNumber" />
|
||||
<result column="regLocation" jdbcType="VARCHAR" property="regLocation" />
|
||||
<result column="email" jdbcType="VARCHAR" property="email" />
|
||||
<result column="websiteList" jdbcType="VARCHAR" property="websiteList" />
|
||||
<result column="creditCodeFk" jdbcType="VARCHAR" property="creditCodeFk" />
|
||||
<result column="supplierName" jdbcType="VARCHAR" property="supplierName" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, phoneNumber, regLocation, email, websiteList, creditCodeFk, supplierName
|
||||
</sql>
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table ty_contact_info-->
|
||||
<id column="id" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="phoneNumber" jdbcType="VARCHAR" property="phoneNumber"/>
|
||||
<result column="regLocation" jdbcType="VARCHAR" property="regLocation"/>
|
||||
<result column="email" jdbcType="VARCHAR" property="email"/>
|
||||
<result column="websiteList" jdbcType="VARCHAR" property="websiteList"/>
|
||||
<result column="creditCodeFk" jdbcType="VARCHAR" property="creditCodeFk"/>
|
||||
<result column="supplierName" jdbcType="VARCHAR" property="supplierName"/>
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, phoneNumber, regLocation, email, websiteList, creditCodeFk, supplierName
|
||||
</sql>
|
||||
|
||||
|
||||
<select id="findGroup" parameterType="com.glxp.udidl.admin.req.tyapi.TyContactRequest"
|
||||
resultType="com.glxp.udidl.admin.res.tyapi.TyContactResponse">
|
||||
SELECT tci.phoneNumber mainPhoneNumber,
|
||||
tci.regLocation,
|
||||
tci.email,
|
||||
tci.websiteList,
|
||||
tci.creditCodeFk,
|
||||
tci.supplierName,
|
||||
tci.updateTime,
|
||||
tcc.id,
|
||||
tcc.phoneNumber,
|
||||
tcc.source,
|
||||
tcc.tag
|
||||
FROM ty_contact_info tci
|
||||
inner join ty_contact_call tcc on tci.id = tcc.contactIdFk
|
||||
<where>
|
||||
<if test="supplierName != '' and supplierName != null">
|
||||
AND supplierName = #{supplierName}
|
||||
</if>
|
||||
<if test="creditCodeFk != '' and creditCodeFk != null">
|
||||
AND creditCodeFk = #{creditCodeFk}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
|
Loading…
Reference in New Issue