feat: 医保功能
parent
7470461c4d
commit
5a07a31305
@ -0,0 +1,140 @@
|
||||
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 YbHcxxGgResponse {
|
||||
@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("productionCode")
|
||||
private String productionCode;
|
||||
@JsonProperty("specificationCode")
|
||||
private String specificationCode;
|
||||
}
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public static class RowsDTO {
|
||||
@JsonProperty("releaseVersion")
|
||||
private Integer releaseVersion;
|
||||
@JsonProperty("companyName")
|
||||
private String companyName;
|
||||
@JsonProperty("catalogname1")
|
||||
private String catalogname1;
|
||||
@JsonProperty("catalogname2")
|
||||
private String catalogname2;
|
||||
@JsonProperty("catalogname3")
|
||||
private String catalogname3;
|
||||
@JsonProperty("commonname")
|
||||
private String commonname;
|
||||
@JsonProperty("matrial")
|
||||
private String matrial;
|
||||
@JsonProperty("characteristic")
|
||||
private String characteristic;
|
||||
@JsonProperty("relationId")
|
||||
private String relationId;
|
||||
@JsonProperty("catalogCode")
|
||||
private String catalogCode;
|
||||
@JsonProperty("specificationCode")
|
||||
private String specificationCode;
|
||||
@JsonProperty("productionCode")
|
||||
private String productionCode;
|
||||
@JsonProperty("regcardid")
|
||||
private String regcardid;
|
||||
@JsonProperty("regcardnm")
|
||||
private String regcardnm;
|
||||
@JsonProperty("regcardName")
|
||||
private String regcardName;
|
||||
@JsonProperty("productid")
|
||||
private String productid;
|
||||
@JsonProperty("productName")
|
||||
private String productName;
|
||||
@JsonProperty("goodsid")
|
||||
private String goodsid;
|
||||
@JsonProperty("specification")
|
||||
private String specification;
|
||||
@JsonProperty("model")
|
||||
private String model;
|
||||
@JsonProperty("isUsing")
|
||||
private Integer isUsing;
|
||||
@JsonProperty("relationStatus")
|
||||
private String relationStatus;
|
||||
@JsonProperty("addUserId")
|
||||
private String addUserId;
|
||||
@JsonProperty("addUserName")
|
||||
private String addUserName;
|
||||
@JsonProperty("addTime")
|
||||
private String addTime;
|
||||
@JsonProperty("lastUpdateUserId")
|
||||
private String lastUpdateUserId;
|
||||
@JsonProperty("lastUpdateUserName")
|
||||
private String lastUpdateUserName;
|
||||
@JsonProperty("lastUpdateTime")
|
||||
private String lastUpdateTime;
|
||||
@JsonProperty("auditRemark")
|
||||
private String auditRemark;
|
||||
@JsonProperty("auditUserId")
|
||||
private String auditUserId;
|
||||
@JsonProperty("auditUserName")
|
||||
private String auditUserName;
|
||||
@JsonProperty("auditTime")
|
||||
private String auditTime;
|
||||
@JsonProperty("udiCode")
|
||||
private String udiCode;
|
||||
@JsonProperty("ggxhCode")
|
||||
private String ggxhCode;
|
||||
@JsonProperty("oldregcardnm")
|
||||
private String oldregcardnm;
|
||||
@JsonProperty("mapingCode")
|
||||
private String mapingCode;
|
||||
@JsonProperty("codeOld")
|
||||
private String codeOld;
|
||||
@JsonProperty("codeShow")
|
||||
private String codeShow;
|
||||
@JsonProperty("dataType")
|
||||
private String dataType;
|
||||
@JsonProperty("registrant")
|
||||
private String registrant;
|
||||
}
|
||||
}
|
@ -0,0 +1,108 @@
|
||||
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 YbHcxxResponse {
|
||||
@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("specificationCode")
|
||||
private String specificationCode;
|
||||
}
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public static class RowsDTO {
|
||||
@JsonProperty("releaseVersion")
|
||||
private Integer releaseVersion;
|
||||
@JsonProperty("regcardName")
|
||||
private String regcardName;
|
||||
@JsonProperty("regcardnm")
|
||||
private String regcardnm;
|
||||
@JsonProperty("productName")
|
||||
private String productName;
|
||||
@JsonProperty("specification")
|
||||
private String specification;
|
||||
@JsonProperty("model")
|
||||
private String model;
|
||||
@JsonProperty("specificationCode")
|
||||
private String specificationCode;
|
||||
@JsonProperty("catalogname1")
|
||||
private String catalogname1;
|
||||
@JsonProperty("catalogname2")
|
||||
private String catalogname2;
|
||||
@JsonProperty("catalogname3")
|
||||
private String catalogname3;
|
||||
@JsonProperty("commonname")
|
||||
private String commonname;
|
||||
@JsonProperty("matrial")
|
||||
private String matrial;
|
||||
@JsonProperty("characteristic")
|
||||
private String characteristic;
|
||||
@JsonProperty("companyName")
|
||||
private String companyName;
|
||||
@JsonProperty("prodCount")
|
||||
private String prodCount;
|
||||
@JsonProperty("regCount")
|
||||
private String regCount;
|
||||
@JsonProperty("specCount")
|
||||
private String specCount;
|
||||
@JsonProperty("codeCount")
|
||||
private String codeCount;
|
||||
@JsonProperty("codeCounts")
|
||||
private String codeCounts;
|
||||
@JsonProperty("proCounts")
|
||||
private String proCounts;
|
||||
@JsonProperty("regCounts")
|
||||
private String regCounts;
|
||||
@JsonProperty("compCounts")
|
||||
private String compCounts;
|
||||
@JsonProperty("specCounts")
|
||||
private String specCounts;
|
||||
@JsonProperty("totals")
|
||||
private String totals;
|
||||
@JsonProperty("productionCode")
|
||||
private String productionCode;
|
||||
}
|
||||
}
|
@ -1,10 +1,62 @@
|
||||
package com.glxp.udidl.admin.service.chs;
|
||||
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.glxp.udidl.admin.entity.tyapi.TySupplierEntity;
|
||||
import com.glxp.udidl.admin.res.chs.YbHcflResponse;
|
||||
import com.glxp.udidl.admin.res.tyapi.SupplierResponse;
|
||||
import com.glxp.udidl.admin.util.DateUtil;
|
||||
import com.glxp.udidl.admin.util.IntUtil;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
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;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class YbHcflService extends ServiceImpl<YbHcflMapper, YbHcflEntity> {
|
||||
|
||||
@Resource
|
||||
YbChsHttpClient ybChsHttpClient;
|
||||
@Resource
|
||||
YbHcflMapper ybHcflMapper;
|
||||
|
||||
/**
|
||||
* 更新数据库的YbHcf列表数据
|
||||
* 以一定大小页面 分批对比数据库 医用耗材分类代码 是否存在 不存在进行新增
|
||||
*/
|
||||
public void updateYbHcfList(){
|
||||
Integer pageNum = 1;
|
||||
Integer pageSize = 200;
|
||||
|
||||
//1、获取数据
|
||||
YbHcflResponse ybHcflResponse = ybChsHttpClient.getYbHcflList(pageNum, pageSize);
|
||||
Integer total = ybHcflResponse.getTotal();
|
||||
//处理第一批数据
|
||||
processUpdates(ybHcflResponse);
|
||||
//处理后续数据
|
||||
if (total>pageNum){
|
||||
for (int i = 2; i <= total ; i++) {
|
||||
processUpdates(ybChsHttpClient.getYbHcflList(i, pageSize));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理比对更新
|
||||
* @param ybHcflResponse
|
||||
*/
|
||||
private void processUpdates(YbHcflResponse ybHcflResponse) {
|
||||
List<YbHcflResponse.RowsDTO> list = ybHcflResponse.getRows();
|
||||
List<YbHcflEntity> ybHcflEntities = BeanUtil.copyToList(list, YbHcflEntity.class);
|
||||
ybHcflMapper.batchSaveOrUpdateBySpecificationCode(ybHcflEntities);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,52 @@
|
||||
package com.glxp.udidl.admin.thread;
|
||||
|
||||
import com.glxp.udidl.admin.constant.Constant;
|
||||
import com.glxp.udidl.admin.dao.info.ScheduledMapper;
|
||||
import com.glxp.udidl.admin.entity.info.ScheduledEntity;
|
||||
import com.glxp.udidl.admin.entity.udid.JobLog;
|
||||
import com.glxp.udidl.admin.req.info.ScheduledRequest;
|
||||
import com.glxp.udidl.admin.res.BaseResponse;
|
||||
import com.glxp.udidl.admin.service.chs.YbHcflService;
|
||||
import com.glxp.udidl.admin.util.DateUtil;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
import org.springframework.scheduling.annotation.SchedulingConfigurer;
|
||||
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
|
||||
import org.springframework.scheduling.support.CronTrigger;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
@Component
|
||||
@EnableScheduling
|
||||
public class YbChsHcflTask implements SchedulingConfigurer {
|
||||
|
||||
@Resource
|
||||
private ScheduledMapper scheduledDao;
|
||||
|
||||
@Resource
|
||||
private YbHcflService ybHcflService;
|
||||
|
||||
final Logger logger = LoggerFactory.getLogger(DownloadProductInfoTask.class);
|
||||
|
||||
@Override
|
||||
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
|
||||
scheduledTaskRegistrar.addTriggerTask(() -> process(),
|
||||
triggerContext -> {
|
||||
ScheduledRequest scheduledRequest = new ScheduledRequest();
|
||||
scheduledRequest.setCronName("ybChsHcflTask");
|
||||
ScheduledEntity scheduledEntity = scheduledDao.findScheduled(scheduledRequest);
|
||||
String cron = scheduledEntity.getCron();
|
||||
if (cron.isEmpty()) {
|
||||
logger.error("cron is null");
|
||||
}
|
||||
return new CronTrigger(cron).nextExecutionTime(triggerContext);
|
||||
});
|
||||
}
|
||||
|
||||
private void process() {
|
||||
System.out.println("开始执行更新医保数据");
|
||||
ybHcflService.updateYbHcfList();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue