医保耗材下载备份
parent
665380dad5
commit
7470461c4d
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.chs;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface YbHcflMapper extends BaseMapper<YbHcflEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.chs;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcxxGgEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface YbHcxxGgMapper extends BaseMapper<YbHcxxGgEntity> {
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package com.glxp.udidl.admin.dao.chs;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface YbHcxxMapper extends BaseMapper<YbHcxxEntity> {
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.glxp.udidl.admin.req.chs;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class YbHcflRequest {
|
||||
|
||||
private Boolean _search;
|
||||
private Long nd;
|
||||
private Integer rows;
|
||||
private Integer page;
|
||||
private String sidx;
|
||||
private String sord;
|
||||
private String catalogname1;
|
||||
private String catalogname2;
|
||||
private String catalogname3;
|
||||
private String commonname;
|
||||
private String matrial;
|
||||
private String characteristic;
|
||||
}
|
@ -0,0 +1,103 @@
|
||||
package com.glxp.udidl.admin.res.chs;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public class YbHcflResponse {
|
||||
|
||||
@JsonProperty("records")
|
||||
private Integer records;
|
||||
@JsonProperty("total")
|
||||
private Integer total;
|
||||
@JsonProperty("rows")
|
||||
private List<RowsDTO> rows;
|
||||
@JsonProperty("page")
|
||||
private Integer page;
|
||||
@JsonProperty("count")
|
||||
private Integer count;
|
||||
@JsonProperty("firstResult")
|
||||
private Integer firstResult;
|
||||
@JsonProperty("maxResults")
|
||||
private Integer maxResults;
|
||||
@JsonProperty("success")
|
||||
private Boolean success;
|
||||
@JsonProperty("result")
|
||||
private String result;
|
||||
@JsonProperty("conditions")
|
||||
private ConditionsDTO conditions;
|
||||
@JsonProperty("msg")
|
||||
private String msg;
|
||||
@JsonProperty("form")
|
||||
private String form;
|
||||
@JsonProperty("code")
|
||||
private Integer code;
|
||||
@JsonProperty("operCount")
|
||||
private Integer operCount;
|
||||
@JsonProperty("sord")
|
||||
private String sord;
|
||||
@JsonProperty("sidx")
|
||||
private String sidx;
|
||||
@JsonProperty("orderby")
|
||||
private String orderby;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public static class ConditionsDTO {
|
||||
@JsonProperty("orderColumn")
|
||||
private Integer orderColumn;
|
||||
}
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public static class RowsDTO {
|
||||
@JsonProperty("specificationId")
|
||||
private String specificationId;
|
||||
@JsonProperty("specificationCode")
|
||||
private String specificationCode;
|
||||
@JsonProperty("catalogcode")
|
||||
private String catalogcode;
|
||||
@JsonProperty("catalogname1")
|
||||
private String catalogname1;
|
||||
@JsonProperty("catalogname2")
|
||||
private String catalogname2;
|
||||
@JsonProperty("catalogname3")
|
||||
private String catalogname3;
|
||||
@JsonProperty("commonnamecode")
|
||||
private String commonnamecode;
|
||||
@JsonProperty("commonname")
|
||||
private String commonname;
|
||||
@JsonProperty("matrialcode")
|
||||
private String matrialcode;
|
||||
@JsonProperty("matrial")
|
||||
private String matrial;
|
||||
@JsonProperty("characteristiccode")
|
||||
private String characteristiccode;
|
||||
@JsonProperty("characteristic")
|
||||
private String characteristic;
|
||||
@JsonProperty("separateCharges")
|
||||
private String separateCharges;
|
||||
@JsonProperty("paymentType")
|
||||
private String paymentType;
|
||||
@JsonProperty("paymentStandard")
|
||||
private String paymentStandard;
|
||||
@JsonProperty("isusing")
|
||||
private Integer isusing;
|
||||
@JsonProperty("specificationType")
|
||||
private String specificationType;
|
||||
@JsonProperty("productStatusS")
|
||||
private String productStatusS;
|
||||
@JsonProperty("productCount")
|
||||
private String productCount;
|
||||
@JsonProperty("compCount")
|
||||
private String compCount;
|
||||
@JsonProperty("regCount")
|
||||
private String regCount;
|
||||
@JsonProperty("goodsCount")
|
||||
private String goodsCount;
|
||||
}
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package com.glxp.udidl.admin.service.chs;
|
||||
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.alibaba.fastjson.TypeReference;
|
||||
import com.glxp.udidl.admin.req.chs.YbHcflRequest;
|
||||
import com.glxp.udidl.admin.res.tyapi.SupplierResponse;
|
||||
import com.glxp.udidl.admin.util.OkHttpCli;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@Slf4j
|
||||
@Service
|
||||
public class YbChsHttpClient {
|
||||
|
||||
@Resource
|
||||
OkHttpCli okHttpCli;
|
||||
|
||||
/**
|
||||
* 获取耗材分类目录
|
||||
*/
|
||||
String getHcflUrl = "https://code.nhsa.gov.cn/hc/stdSpecification/getStdSpecificationListDataCompanyReport.html";
|
||||
/**
|
||||
* 获取医用耗材信息
|
||||
*/
|
||||
String getYyhcxxUrl = "https://code.nhsa.gov.cn/hc/stdPublishData/getNewPublishRelationDataList.html";
|
||||
/**
|
||||
* 获取医用耗材规格信息
|
||||
*/
|
||||
String getHcxxGgUrl = "https://code.nhsa.gov.cn/hc/stdYgbData/getPublicHcDataList.html";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.chs;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.dao.chs.YbHcflMapper;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
|
||||
@Service
|
||||
public class YbHcflService extends ServiceImpl<YbHcflMapper, YbHcflEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.chs;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcxxGgEntity;
|
||||
import com.glxp.udidl.admin.dao.chs.YbHcxxGgMapper;
|
||||
@Service
|
||||
public class YbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.chs;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
|
||||
import com.glxp.udidl.admin.dao.chs.YbHcxxMapper;
|
||||
@Service
|
||||
public class YbHcxxService extends ServiceImpl<YbHcxxMapper, YbHcxxEntity> {
|
||||
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
<?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.chs.YbHcflMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.chs.YbHcflEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table yb_hcfl-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="specificationCode" jdbcType="VARCHAR" property="specificationCode" />
|
||||
<result column="specificationId" jdbcType="INTEGER" property="specificationId" />
|
||||
<result column="catalogcode" jdbcType="VARCHAR" property="catalogcode" />
|
||||
<result column="catalogname1" jdbcType="VARCHAR" property="catalogname1" />
|
||||
<result column="catalogname2" jdbcType="VARCHAR" property="catalogname2" />
|
||||
<result column="catalogname3" jdbcType="VARCHAR" property="catalogname3" />
|
||||
<result column="commonnamecode" jdbcType="VARCHAR" property="commonnamecode" />
|
||||
<result column="commonname" jdbcType="VARCHAR" property="commonname" />
|
||||
<result column="matrialcode" jdbcType="VARCHAR" property="matrialcode" />
|
||||
<result column="matrial" jdbcType="VARCHAR" property="matrial" />
|
||||
<result column="characteristiccode" jdbcType="VARCHAR" property="characteristiccode" />
|
||||
<result column="characteristic" jdbcType="VARCHAR" property="characteristic" />
|
||||
<result column="separateCharges" jdbcType="VARCHAR" property="separateCharges" />
|
||||
<result column="paymentType" jdbcType="VARCHAR" property="paymentType" />
|
||||
<result column="paymentStandard" jdbcType="VARCHAR" property="paymentStandard" />
|
||||
<result column="isusing" jdbcType="VARCHAR" property="isusing" />
|
||||
<result column="specificationType" jdbcType="VARCHAR" property="specificationType" />
|
||||
<result column="productStatusS" jdbcType="VARCHAR" property="productStatusS" />
|
||||
<result column="productCount" jdbcType="VARCHAR" property="productCount" />
|
||||
<result column="compCount" jdbcType="VARCHAR" property="compCount" />
|
||||
<result column="regCount" jdbcType="VARCHAR" property="regCount" />
|
||||
<result column="goodsCount" jdbcType="VARCHAR" property="goodsCount" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, specificationCode, specificationId, catalogcode, catalogname1, catalogname2,
|
||||
catalogname3, commonnamecode, commonname, matrialcode, matrial, characteristiccode,
|
||||
characteristic, separateCharges, paymentType, paymentStandard, isusing, specificationType,
|
||||
productStatusS, productCount, compCount, regCount, goodsCount
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,57 @@
|
||||
<?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.chs.YbHcxxGgMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.chs.YbHcxxGgEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table yb_hcxx_gg-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="addTime" jdbcType="VARCHAR" property="addTime" />
|
||||
<result column="addUserId" jdbcType="VARCHAR" property="addUserId" />
|
||||
<result column="addUserName" jdbcType="VARCHAR" property="addUserName" />
|
||||
<result column="auditRemark" jdbcType="VARCHAR" property="auditRemark" />
|
||||
<result column="auditUserId" jdbcType="VARCHAR" property="auditUserId" />
|
||||
<result column="auditUserName" jdbcType="VARCHAR" property="auditUserName" />
|
||||
<result column="catalogCode" jdbcType="VARCHAR" property="catalogCode" />
|
||||
<result column="catalogname1" jdbcType="VARCHAR" property="catalogname1" />
|
||||
<result column="catalogname2" jdbcType="VARCHAR" property="catalogname2" />
|
||||
<result column="catalogname3" jdbcType="VARCHAR" property="catalogname3" />
|
||||
<result column="characteristic" jdbcType="VARCHAR" property="characteristic" />
|
||||
<result column="codeOld" jdbcType="VARCHAR" property="codeOld" />
|
||||
<result column="codeShow" jdbcType="VARCHAR" property="codeShow" />
|
||||
<result column="commonname" jdbcType="VARCHAR" property="commonname" />
|
||||
<result column="companyName" jdbcType="VARCHAR" property="companyName" />
|
||||
<result column="dataType" jdbcType="VARCHAR" property="dataType" />
|
||||
<result column="ggxhCode" jdbcType="VARCHAR" property="ggxhCode" />
|
||||
<result column="goodsid" jdbcType="VARCHAR" property="goodsid" />
|
||||
<result column="isUsing" jdbcType="VARCHAR" property="isUsing" />
|
||||
<result column="lastUpdateTime" jdbcType="VARCHAR" property="lastUpdateTime" />
|
||||
<result column="lastUpdateUserId" jdbcType="VARCHAR" property="lastUpdateUserId" />
|
||||
<result column="lastUpdateUserName" jdbcType="VARCHAR" property="lastUpdateUserName" />
|
||||
<result column="mapingCode" jdbcType="VARCHAR" property="mapingCode" />
|
||||
<result column="matrial" jdbcType="VARCHAR" property="matrial" />
|
||||
<result column="model" jdbcType="VARCHAR" property="model" />
|
||||
<result column="oldregcardnm" jdbcType="VARCHAR" property="oldregcardnm" />
|
||||
<result column="productName" jdbcType="VARCHAR" property="productName" />
|
||||
<result column="productid" jdbcType="VARCHAR" property="productid" />
|
||||
<result column="productionCode" jdbcType="VARCHAR" property="productionCode" />
|
||||
<result column="regcardName" jdbcType="VARCHAR" property="regcardName" />
|
||||
<result column="regcardid" jdbcType="VARCHAR" property="regcardid" />
|
||||
<result column="regcardnm" jdbcType="VARCHAR" property="regcardnm" />
|
||||
<result column="registrant" jdbcType="VARCHAR" property="registrant" />
|
||||
<result column="relationId" jdbcType="VARCHAR" property="relationId" />
|
||||
<result column="relationStatus" jdbcType="VARCHAR" property="relationStatus" />
|
||||
<result column="releaseVersion" jdbcType="VARCHAR" property="releaseVersion" />
|
||||
<result column="specification" jdbcType="VARCHAR" property="specification" />
|
||||
<result column="specificationCode" jdbcType="VARCHAR" property="specificationCode" />
|
||||
<result column="udiCode" jdbcType="VARCHAR" property="udiCode" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, addTime, addUserId, addUserName, auditRemark, auditUserId, auditUserName, catalogCode,
|
||||
catalogname1, catalogname2, catalogname3, characteristic, codeOld, codeShow, commonname,
|
||||
companyName, dataType, ggxhCode, goodsid, isUsing, lastUpdateTime, lastUpdateUserId,
|
||||
lastUpdateUserName, mapingCode, matrial, model, oldregcardnm, productName, productid,
|
||||
productionCode, regcardName, regcardid, regcardnm, registrant, relationId, relationStatus,
|
||||
releaseVersion, specification, specificationCode, udiCode
|
||||
</sql>
|
||||
</mapper>
|
@ -0,0 +1,42 @@
|
||||
<?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.chs.YbHcxxMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.chs.YbHcxxEntity">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table yb_hcxx-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="specificationCode" jdbcType="VARCHAR" property="specificationCode" />
|
||||
<result column="hcflCodeFk" jdbcType="VARCHAR" property="hcflCodeFk" />
|
||||
<result column="catalogname1" jdbcType="VARCHAR" property="catalogname1" />
|
||||
<result column="catalogname2" jdbcType="VARCHAR" property="catalogname2" />
|
||||
<result column="catalogname3" jdbcType="VARCHAR" property="catalogname3" />
|
||||
<result column="characteristic" jdbcType="VARCHAR" property="characteristic" />
|
||||
<result column="codeCount" jdbcType="VARCHAR" property="codeCount" />
|
||||
<result column="codeCounts" jdbcType="VARCHAR" property="codeCounts" />
|
||||
<result column="commonname" jdbcType="VARCHAR" property="commonname" />
|
||||
<result column="compCounts" jdbcType="VARCHAR" property="compCounts" />
|
||||
<result column="companyName" jdbcType="VARCHAR" property="companyName" />
|
||||
<result column="matrial" jdbcType="VARCHAR" property="matrial" />
|
||||
<result column="model" jdbcType="VARCHAR" property="model" />
|
||||
<result column="proCounts" jdbcType="VARCHAR" property="proCounts" />
|
||||
<result column="prodCount" jdbcType="VARCHAR" property="prodCount" />
|
||||
<result column="productName" jdbcType="VARCHAR" property="productName" />
|
||||
<result column="productionCode" jdbcType="VARCHAR" property="productionCode" />
|
||||
<result column="regCount" jdbcType="VARCHAR" property="regCount" />
|
||||
<result column="regCounts" jdbcType="VARCHAR" property="regCounts" />
|
||||
<result column="regcardName" jdbcType="VARCHAR" property="regcardName" />
|
||||
<result column="regcardnm" jdbcType="VARCHAR" property="regcardnm" />
|
||||
<result column="releaseVersion" jdbcType="VARCHAR" property="releaseVersion" />
|
||||
<result column="specCount" jdbcType="VARCHAR" property="specCount" />
|
||||
<result column="specCounts" jdbcType="VARCHAR" property="specCounts" />
|
||||
<result column="specification" jdbcType="VARCHAR" property="specification" />
|
||||
<result column="totals" jdbcType="VARCHAR" property="totals" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, specificationCode, hcflCodeFk, catalogname1, catalogname2, catalogname3, characteristic,
|
||||
codeCount, codeCounts, commonname, compCounts, companyName, matrial, model, proCounts,
|
||||
prodCount, productName, productionCode, regCount, regCounts, regcardName, regcardnm,
|
||||
releaseVersion, specCount, specCounts, specification, totals
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue