添加天眼查相关接口
parent
ccb8254580
commit
18872cebe1
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface TyCompanyDetailMapper extends BaseMapper<TyCompanyDetailEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface TyContactCallMapper extends BaseMapper<TyContactCallEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface TyContactInfoMapper extends BaseMapper<TyContactInfoEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TySupplierEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface TySupplierMapper extends BaseMapper<TySupplierEntity> {
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
package com.glxp.udidl.admin.entity.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 企业联系方式列表
|
||||
*/
|
||||
@ApiModel(value="com-glxp-udidl-admin-entity-tyapi-TyContactCall")
|
||||
@Data
|
||||
@TableName(value = "ty_contact_call")
|
||||
public class TyContactCallEntity implements Serializable {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@ApiModelProperty(value="")
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 电话
|
||||
*/
|
||||
@TableField(value = "phoneNumber")
|
||||
@ApiModelProperty(value="电话")
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 号码来源
|
||||
*/
|
||||
@TableField(value = "`source`")
|
||||
@ApiModelProperty(value="号码来源")
|
||||
private String source;
|
||||
|
||||
/**
|
||||
* 标签
|
||||
*/
|
||||
@TableField(value = "tag")
|
||||
@ApiModelProperty(value="标签")
|
||||
private String tag;
|
||||
|
||||
/**
|
||||
* 公司ID外键
|
||||
*/
|
||||
@TableField(value = "contactIdFk")
|
||||
@ApiModelProperty(value="公司ID外键")
|
||||
private Integer contactIdFk;
|
||||
|
||||
/**
|
||||
* 所属企业统一社会信用号外键
|
||||
*/
|
||||
@TableField(value = "creditCodeFk")
|
||||
@ApiModelProperty(value="所属企业统一社会信用号外键")
|
||||
private String creditCodeFk;
|
||||
|
||||
/**
|
||||
* 所属企业名称
|
||||
*/
|
||||
@TableField(value = "supplierName")
|
||||
@ApiModelProperty(value="所属企业名称")
|
||||
private String supplierName;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
package com.glxp.udidl.admin.entity.tyapi;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 企业联系方式信息表
|
||||
*/
|
||||
@ApiModel(value="com-glxp-udidl-admin-entity-tyapi-TyContactInfo")
|
||||
@Data
|
||||
@TableName(value = "ty_contact_info")
|
||||
public class TyContactInfoEntity implements Serializable {
|
||||
/**
|
||||
* 公司id
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
@ApiModelProperty(value="公司id")
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 电话
|
||||
*/
|
||||
@TableField(value = "phoneNumber")
|
||||
@ApiModelProperty(value="电话")
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 注册地址
|
||||
*/
|
||||
@TableField(value = "regLocation")
|
||||
@ApiModelProperty(value="注册地址")
|
||||
private String regLocation;
|
||||
|
||||
/**
|
||||
* 邮箱
|
||||
*/
|
||||
@TableField(value = "email")
|
||||
@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;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.tyapi;
|
||||
|
||||
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;
|
||||
@Service
|
||||
public class TyCompanyDetailService extends ServiceImpl<TyCompanyDetailMapper, TyCompanyDetailEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.tyapi;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.dao.tyapi.TyContactCallMapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity;
|
||||
@Service
|
||||
public class TyContactCallService extends ServiceImpl<TyContactCallMapper, TyContactCallEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.tyapi;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TyContactInfoEntity;
|
||||
import com.glxp.udidl.admin.dao.tyapi.TyContactInfoMapper;
|
||||
@Service
|
||||
public class TyContactInfoService extends ServiceImpl<TyContactInfoMapper, TyContactInfoEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.tyapi;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TySupplierEntity;
|
||||
import com.glxp.udidl.admin.dao.tyapi.TySupplierMapper;
|
||||
@Service
|
||||
public class TySupplierService extends ServiceImpl<TySupplierMapper, TySupplierEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
<?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.TyCompanyDetailMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.tyapi.TyCompanyDetailEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table ty_company_detail-->
|
||||
<id column="id" jdbcType="VARCHAR" property="id" />
|
||||
<result column="historyNames" jdbcType="VARCHAR" property="historyNames" />
|
||||
<result column="cancelDate" jdbcType="VARCHAR" property="cancelDate" />
|
||||
<result column="regStatus" jdbcType="VARCHAR" property="regStatus" />
|
||||
<result column="regCapital" jdbcType="VARCHAR" property="regCapital" />
|
||||
<result column="city" jdbcType="VARCHAR" property="city" />
|
||||
<result column="staffNumRange" jdbcType="VARCHAR" property="staffNumRange" />
|
||||
<result column="bondNum" jdbcType="VARCHAR" property="bondNum" />
|
||||
<result column="historyNameList" jdbcType="VARCHAR" property="historyNameList" />
|
||||
<result column="industry" jdbcType="VARCHAR" property="industry" />
|
||||
<result column="bondName" jdbcType="VARCHAR" property="bondName" />
|
||||
<result column="revokeDate" jdbcType="VARCHAR" property="revokeDate" />
|
||||
<result column="type" jdbcType="VARCHAR" property="type" />
|
||||
<result column="updateTimes" jdbcType="VARCHAR" property="updateTimes" />
|
||||
<result column="legalPersonName" jdbcType="VARCHAR" property="legalPersonName" />
|
||||
<result column="revokeReason" jdbcType="VARCHAR" property="revokeReason" />
|
||||
<result column="regNumber" jdbcType="VARCHAR" property="regNumber" />
|
||||
<result column="creditCode" jdbcType="VARCHAR" property="creditCode" />
|
||||
<result column="property3" jdbcType="VARCHAR" property="property3" />
|
||||
<result column="usedBondName" jdbcType="VARCHAR" property="usedBondName" />
|
||||
<result column="approvedTime" jdbcType="VARCHAR" property="approvedTime" />
|
||||
<result column="fromTime" jdbcType="VARCHAR" property="fromTime" />
|
||||
<result column="socialStaffNum" jdbcType="VARCHAR" property="socialStaffNum" />
|
||||
<result column="actualCapitalCurrency" jdbcType="VARCHAR" property="actualCapitalCurrency" />
|
||||
<result column="alias" jdbcType="VARCHAR" property="alias" />
|
||||
<result column="companyOrgType" jdbcType="VARCHAR" property="companyOrgType" />
|
||||
<result column="cancelReason" jdbcType="VARCHAR" property="cancelReason" />
|
||||
<result column="orgNumber" jdbcType="VARCHAR" property="orgNumber" />
|
||||
<result column="email" jdbcType="VARCHAR" property="email" />
|
||||
<result column="toTime" jdbcType="VARCHAR" property="toTime" />
|
||||
<result column="actualCapital" jdbcType="VARCHAR" property="actualCapital" />
|
||||
<result column="estiblishTime" jdbcType="VARCHAR" property="estiblishTime" />
|
||||
<result column="regInstitute" jdbcType="VARCHAR" property="regInstitute" />
|
||||
<result column="businessScope" jdbcType="VARCHAR" property="businessScope" />
|
||||
<result column="taxNumber" jdbcType="VARCHAR" property="taxNumber" />
|
||||
<result column="regLocation" jdbcType="VARCHAR" property="regLocation" />
|
||||
<result column="regCapitalCurrency" jdbcType="VARCHAR" property="regCapitalCurrency" />
|
||||
<result column="tags" jdbcType="VARCHAR" property="tags" />
|
||||
<result column="websiteList" jdbcType="VARCHAR" property="websiteList" />
|
||||
<result column="phoneNumber" jdbcType="VARCHAR" property="phoneNumber" />
|
||||
<result column="district" jdbcType="VARCHAR" property="district" />
|
||||
<result column="bondType" jdbcType="VARCHAR" property="bondType" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="percentileScore" jdbcType="VARCHAR" property="percentileScore" />
|
||||
<result column="industryAll" jdbcType="VARCHAR" property="industryAll" />
|
||||
<result column="isMicroEnt" jdbcType="VARCHAR" property="isMicroEnt" />
|
||||
<result column="base" jdbcType="VARCHAR" property="base" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, historyNames, cancelDate, regStatus, regCapital, city, staffNumRange, bondNum,
|
||||
historyNameList, industry, bondName, revokeDate, `type`, updateTimes, legalPersonName,
|
||||
revokeReason, regNumber, creditCode, property3, usedBondName, approvedTime, fromTime,
|
||||
socialStaffNum, actualCapitalCurrency, `alias`, companyOrgType, cancelReason, orgNumber,
|
||||
email, toTime, actualCapital, estiblishTime, regInstitute, businessScope, taxNumber,
|
||||
regLocation, regCapitalCurrency, tags, websiteList, phoneNumber, district, bondType,
|
||||
`name`, percentileScore, industryAll, isMicroEnt, base
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,19 @@
|
||||
<?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.TyContactCallMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.tyapi.TyContactCallEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table ty_contact_call-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="phoneNumber" jdbcType="VARCHAR" property="phoneNumber" />
|
||||
<result column="source" jdbcType="VARCHAR" property="source" />
|
||||
<result column="tag" jdbcType="VARCHAR" property="tag" />
|
||||
<result column="contactIdFk" jdbcType="INTEGER" property="contactIdFk" />
|
||||
<result column="creditCodeFk" jdbcType="VARCHAR" property="creditCodeFk" />
|
||||
<result column="supplierName" jdbcType="VARCHAR" property="supplierName" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, phoneNumber, `source`, tag, contactIdFk, creditCodeFk, supplierName
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,19 @@
|
||||
<?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>
|
||||
</mapper>
|
@ -0,0 +1,25 @@
|
||||
<?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.TySupplierMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.tyapi.TySupplierEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table ty_supplier-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="supplier_graphId" jdbcType="VARCHAR" property="supplier_graphId" />
|
||||
<result column="announcement_date" jdbcType="VARCHAR" property="announcement_date" />
|
||||
<result column="amt" jdbcType="VARCHAR" property="amt" />
|
||||
<result column="logo" jdbcType="VARCHAR" property="logo" />
|
||||
<result column="alias" jdbcType="VARCHAR" property="alias" />
|
||||
<result column="supplier_name" jdbcType="VARCHAR" property="supplier_name" />
|
||||
<result column="relationship" jdbcType="VARCHAR" property="relationship" />
|
||||
<result column="dataSource" jdbcType="VARCHAR" property="dataSource" />
|
||||
<result column="ratio" jdbcType="VARCHAR" property="ratio" />
|
||||
<result column="creditCodeFk" jdbcType="VARCHAR" property="creditCodeFk" />
|
||||
<result column="hospName" jdbcType="VARCHAR" property="hospName" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, supplier_graphId, announcement_date, amt, logo, `alias`, supplier_name, relationship,
|
||||
dataSource, ratio, creditCodeFk, hospName
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue