feat: 医保功能

zhairh
chenhc 1 year ago
parent 5a07a31305
commit 4d384129b8

@ -0,0 +1,70 @@
package com.glxp.udidl.admin.controller.udchs;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.service.chsapi.ChsYbHcflService;
import com.glxp.udidl.admin.service.chsapi.ChsYbHcxxGgService;
import com.glxp.udidl.admin.service.chsapi.ChsYbHcxxService;
import com.glxp.udidl.admin.util.ResultVOUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@Api(tags = "医保接口触发手动更新测试")
@RestController
public class UdchsThirdApiController {
@Autowired
ChsYbHcflService ybHcflService;
@Autowired
ChsYbHcxxService ybHcxxService;
@Autowired
ChsYbHcxxGgService ybHcxxGgService;
@ApiOperation("手动触发ybHcfl数据全量更新")
// @AuthRuleAnnotation("udiwms/erp/manual/trig/ybHcfl")
@PostMapping("/udiwms/erp/manual/trig/ybHcfl")
public BaseResponse<?> manualTrigYbHcfl() {
ybHcflService.updateYbHcflList();
return ResultVOUtils.success("手动触发ybHcfl数据全量更新");
}
@ApiOperation("手动触发ybHcxx数据全量更新")
// @AuthRuleAnnotation("udiwms/erp/manual/trig/ybHcxx")
@PostMapping("/udiwms/erp/manual/trig/ybHcxx")
public BaseResponse<?> manualTrigYbHcxx() {
ybHcxxService.updateYbHcxxList();
return ResultVOUtils.success("手动触发ybHcxx数据全量更新");
}
@ApiOperation("手动触发ybHcxxGg数据全量更新")
// @AuthRuleAnnotation("udiwms/erp/manual/trig/ybHcxxGg")
@PostMapping("/udiwms/erp/manual/trig/ybHcxxGg")
public BaseResponse<?> manualTrigYbHcxxGg() {
ybHcxxGgService.updateForEachYbHcxxList();
// Tesseract tesseract = new Tesseract();
// // 其他配置如语言、OCR引擎等
// String result;
// try {
//// File imageFromNetByUrl = getImageFromNetByUrl("http://code.nhsa.gov.cn/hc/ipActuatorVeryCode");
//// File imageFromNetByUrl = new File("E:\\image\\ipActuatorVeryCode.png");
// ImageIO.scanForPlugins();
// result = tesseract.doOCR(imageFromNetByUrl);
// System.out.println(result);
// } catch (TesseractException e) {
// e.printStackTrace();
// }
return ResultVOUtils.success("手动触发ybHcxxGg数据全量更新");
}
@ApiOperation("手动触发ybHcxxGg数据更新通过父code")
// @AuthRuleAnnotation("udiwms/erp/manual/trig/ybHcxxGgByCode")
@PostMapping("/udiwms/erp/manual/trig/ybHcxxGgByCode")
public BaseResponse<?> manualTrigYbHcxxGgByCode(@RequestBody String specificationCode) {
ybHcxxGgService.updateYbHcxxGgList(specificationCode);
return ResultVOUtils.success("手动触发ybHcxxGg数据更新通过父code");
}
}

@ -0,0 +1,32 @@
package com.glxp.udidl.admin.controller.udchs;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.service.udchs.YbHcflService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
/**
*
*/
@Api(tags = "国家医保耗材分类目录信息接口")
@RestController
@RequestMapping("/udchs/ybHcfl")
public class UdchsYbHcflController {
@Autowired
private YbHcflService ybHcflService;
@ApiOperation(value = "国家医保耗材分类目录信息", response = YbHcflEntity.class)
@AuthRuleAnnotation("udchs/ybHcfl/list")
@PostMapping("/list")
public BaseResponse getList(@RequestBody BaseParam param) {
return ybHcflService.getList(param);
}
}

@ -0,0 +1,37 @@
package com.glxp.udidl.admin.controller.udchs;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.service.udchs.YbHcflService;
import com.glxp.udidl.admin.service.udchs.YbHcxxService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
*
*/
@Api(tags = "国家医保医用耗材信息接口")
@RestController
@RequestMapping("/udchs/ybHcxx")
public class UdchsYbHcxxController {
@Autowired
private YbHcxxService ybHcxxService;
@ApiOperation(value = "国家医保医用耗材信息", response = YbHcxxEntity.class)
@AuthRuleAnnotation("udchs/ybHcxx/list")
@PostMapping("/list")
public BaseResponse getList(@RequestBody BaseParam param) {
return ybHcxxService.getList(param);
}
}

@ -0,0 +1,36 @@
package com.glxp.udidl.admin.controller.udchs;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.service.udchs.YbHcflService;
import com.glxp.udidl.admin.service.udchs.YbHcxxGgService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
*
*/
@Api(tags = "国家医保医用耗材规格信息接口")
@RestController
@RequestMapping("/udchs/ybHcxxGg")
public class UdchsYbHcxxGgController {
@Autowired
private YbHcxxGgService ybHcxxGgService;
@ApiOperation(value = "国家医保医用耗材规格信息", response = YbHcflEntity.class)
@AuthRuleAnnotation("udchs/ybHcxxGg/list")
@PostMapping("/list")
public BaseResponse getList(@RequestBody BaseParam param) {
return ybHcxxGgService.getList(param);
}
}

@ -1,17 +1,17 @@
package com.glxp.udidl.admin.dao.chs;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
@Mapper
public interface YbHcflMapper extends BaseMapper<YbHcflEntity> {
int batchSaveOrUpdateBySpecificationCode(@Param("list") List<YbHcflEntity> list);
List<YbHcflEntity> list(BaseParam param);
}

@ -1,9 +1,17 @@
package com.glxp.udidl.admin.dao.chs;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcxxGgEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface YbHcxxGgMapper extends BaseMapper<YbHcxxGgEntity> {
int batchSaveOrUpdateBySpecificationCode(@Param("list") List<YbHcxxGgEntity> list);
List<YbHcxxGgEntity> list(BaseParam param);
}

@ -1,9 +1,17 @@
package com.glxp.udidl.admin.dao.chs;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface YbHcxxMapper extends BaseMapper<YbHcxxEntity> {
int batchSaveOrUpdateBySpecificationCode(@Param("list") List<YbHcxxEntity> list);
List<YbHcxxEntity> list(BaseParam param);
}

@ -0,0 +1,19 @@
package com.glxp.udidl.admin.dto.udchs;
import com.glxp.udidl.admin.req.ListPageRequest;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel("查询参数")
public class BaseParam extends ListPageRequest {
@ApiModelProperty(name = "specificationCode", value = "名称,支持模糊查询")
private String specificationCode;//名称,支持模糊查询
@ApiModelProperty(name = "codeShow", value = "名称,支持模糊查询")
private String codeShow;//名称,支持模糊查询
}

@ -1,10 +0,0 @@
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> {
}

@ -1,10 +0,0 @@
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> {
}

@ -1,29 +1,15 @@
package com.glxp.udidl.admin.service.chs;
package com.glxp.udidl.admin.service.chsapi;
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
import com.alibaba.fastjson2.JSON;
import com.glxp.udidl.admin.req.chs.YbHcflRequest;
import com.glxp.udidl.admin.res.chs.YbHcflResponse;
import com.glxp.udidl.admin.res.chs.YbHcxxGgResponse;
import com.glxp.udidl.admin.res.chs.YbHcxxResponse;
import com.glxp.udidl.admin.res.tyapi.CompanyBaseResponse;
import com.glxp.udidl.admin.res.tyapi.ContactResponse;
import com.glxp.udidl.admin.res.tyapi.SupplierResponse;
import com.glxp.udidl.admin.util.OkHttpCli;
import lombok.extern.slf4j.Slf4j;
import okhttp3.FormBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.*;
import java.nio.charset.Charset;
import java.util.HashMap;
import java.util.Iterator;
@ -31,7 +17,7 @@ import java.util.Map;
@Slf4j
@Service
public class YbChsHttpClient {
public class ChsYbChsHttpClient {
/**
*
@ -71,7 +57,11 @@ public class YbChsHttpClient {
params.put("page", pageNum);
params.put("sord", "asc");
params.put("specificationCode", "C");
try {
Thread.sleep(20000);
} catch (InterruptedException e) {
e.printStackTrace();
}
String response = sendPost(getHcxxUrl+getParams(params), "",Charset.forName("utf-8"));
YbHcxxResponse baseResponse = JSONObject.parseObject(response, new TypeReference<YbHcxxResponse>() {
});
@ -87,18 +77,22 @@ public class YbChsHttpClient {
params.put("page", pageNum);
params.put("sord", "asc");
params.put("specificationCode", specificationCode);
try {
Thread.sleep(15000);
} catch (InterruptedException e) {
e.printStackTrace();
}
String response = sendPost(getHcxxGgUrl+getParams(params), "",Charset.forName("utf-8"));
YbHcxxGgResponse baseResponse = JSONObject.parseObject(response, new TypeReference<YbHcxxGgResponse>() {
});
return baseResponse;
}
public static void main(String[] args) {
YbChsHttpClient ybChsHttpClient = new YbChsHttpClient();
YbHcxxGgResponse ybHcflList = ybChsHttpClient.getYbHcxxGgList("C0101010010100103941",1, 100);
System.out.println(ybHcflList);
}
// public static void main(String[] args) {
// YbChsHttpClient ybChsHttpClient = new YbChsHttpClient();
// YbHcxxGgResponse ybHcflList = ybChsHttpClient.getYbHcxxGgList("C0101010010100103941",1, 200);
// System.out.println(ybHcflList);
// }
/**
@ -180,6 +174,5 @@ public class YbChsHttpClient {
} catch (IOException e) {
throw new RuntimeException(String.format("url:%s,param:%s,message:%s", url, param, e.getMessage()), e);
}
}
}

@ -1,29 +1,20 @@
package com.glxp.udidl.admin.service.chs;
package com.glxp.udidl.admin.service.chsapi;
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> {
public class ChsYbHcflService extends ServiceImpl<YbHcflMapper, YbHcflEntity> {
@Resource
YbChsHttpClient ybChsHttpClient;
ChsYbChsHttpClient ybChsHttpClient;
@Resource
YbHcflMapper ybHcflMapper;
@ -31,7 +22,7 @@ public class YbHcflService extends ServiceImpl<YbHcflMapper, YbHcflEntity> {
* YbHcf
*
*/
public void updateYbHcfList(){
public void updateYbHcflList(){
Integer pageNum = 1;
Integer pageSize = 200;
@ -43,6 +34,7 @@ public class YbHcflService extends ServiceImpl<YbHcflMapper, YbHcflEntity> {
//处理后续数据
if (total>pageNum){
for (int i = 2; i <= total ; i++) {
System.out.println("更新数据库的YbHcf列表数据"+ i);
processUpdates(ybChsHttpClient.getYbHcflList(i, pageSize));
}
}

@ -0,0 +1,100 @@
package com.glxp.udidl.admin.service.chsapi;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.collection.CollectionUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.glxp.udidl.admin.dao.chs.YbHcxxMapper;
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
import com.glxp.udidl.admin.res.chs.YbHcxxGgResponse;
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;
import javax.annotation.Resource;
import java.util.List;
@Service
public class ChsYbHcxxGgService extends ServiceImpl<YbHcxxGgMapper, YbHcxxGgEntity> {
@Resource
ChsYbChsHttpClient ybChsHttpClient;
@Resource
YbHcxxGgMapper ybHcxxGgMapper;
@Resource
YbHcxxMapper ybHcxxMapper;
/**
* YbHcxx
*/
public void updateForEachYbHcxxList(){
Integer pageNum = 1;
Integer pageSize = 200;
IPage<YbHcxxEntity> page = new Page<>();
//设置每页条数
page.setSize(pageSize);
//设置查询第几页
page.setCurrent(pageNum);
QueryWrapper<YbHcxxEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.select("specificationCode");
queryWrapper.orderByAsc("specificationCode");
ybHcxxMapper.selectPage(page, queryWrapper);
List<YbHcxxEntity> records = page.getRecords();
if (CollectionUtil.isNotEmpty(records)){
records.forEach( x->{
updateYbHcxxGgList(x.getSpecificationCode());
});
}
long total = page.getTotal();
if (total > pageSize){
long pageTotal = total/pageSize + 1;
for (int i = 2; i <= pageTotal ; i++) {
page.setCurrent(i);
ybHcxxMapper.selectPage(page, queryWrapper);
List<YbHcxxEntity> records2 = page.getRecords();
records2.forEach( x->{
updateYbHcxxGgList(x.getSpecificationCode());
});
}
}
}
/**
* YbHcxxGg
*/
public void updateYbHcxxGgList(String specificationCode){
Integer pageNum = 1;
Integer pageSize = 200;
//1、获取数据
YbHcxxGgResponse ybHcxxGgResponse = ybChsHttpClient.getYbHcxxGgList(specificationCode, pageNum, pageSize);
Integer total = ybHcxxGgResponse.getTotal();
//处理第一批数据
processUpdates(ybHcxxGgResponse);
//处理后续数据
if (total>pageNum){
for (int i = 2; i <= total ; i++) {
System.out.println("更新数据库的YbHcxxGg列表数据"+ i);
processUpdates(ybChsHttpClient.getYbHcxxGgList(specificationCode,i, pageSize));
}
}
}
/**
*
* @param ybHcxxGgResponse
*/
private void processUpdates(YbHcxxGgResponse ybHcxxGgResponse) {
List<YbHcxxGgResponse.RowsDTO> list = ybHcxxGgResponse.getRows();
List<YbHcxxGgEntity> ybHcxxGgEntities = BeanUtil.copyToList(list, YbHcxxGgEntity.class);
ybHcxxGgMapper.batchSaveOrUpdateBySpecificationCode(ybHcxxGgEntities);
}
}

@ -0,0 +1,53 @@
package com.glxp.udidl.admin.service.chsapi;
import cn.hutool.core.bean.BeanUtil;
import com.glxp.udidl.admin.res.chs.YbHcxxResponse;
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;
import javax.annotation.Resource;
import java.util.List;
@Service
public class ChsYbHcxxService extends ServiceImpl<YbHcxxMapper, YbHcxxEntity> {
@Resource
ChsYbChsHttpClient ybChsHttpClient;
@Resource
YbHcxxMapper ybHcxxMapper;
/**
* YbHcxx
*
*/
public void updateYbHcxxList(){
Integer pageNum = 1;
Integer pageSize = 100;
//1、获取数据
YbHcxxResponse ybHcxxResponse = ybChsHttpClient.getYbHcxxList(pageNum, pageSize);
Integer total = ybHcxxResponse.getTotal();
//处理第一批数据
processUpdates(ybHcxxResponse);
//处理后续数据
if (total>pageNum){
for (int i = 2; i <= total ; i++) {
System.out.println("更新数据库的YbHcxx列表数据"+ i);
processUpdates(ybChsHttpClient.getYbHcxxList(i, pageSize));
}
}
}
/**
*
* @param ybHcxxResponse
*/
private void processUpdates(YbHcxxResponse ybHcxxResponse) {
List<YbHcxxResponse.RowsDTO> list = ybHcxxResponse.getRows();
List<YbHcxxEntity> ybHcxxEntities = BeanUtil.copyToList(list, YbHcxxEntity.class);
ybHcxxMapper.batchSaveOrUpdateBySpecificationCode(ybHcxxEntities);
}
}

@ -0,0 +1,8 @@
package com.glxp.udidl.admin.service.udchs;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.res.BaseResponse;
public interface YbHcflService {
BaseResponse getList(BaseParam param);
}

@ -0,0 +1,8 @@
package com.glxp.udidl.admin.service.udchs;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.res.BaseResponse;
public interface YbHcxxGgService {
BaseResponse getList(BaseParam param);
}

@ -0,0 +1,8 @@
package com.glxp.udidl.admin.service.udchs;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.res.BaseResponse;
public interface YbHcxxService {
BaseResponse getList(BaseParam param);
}

@ -0,0 +1,34 @@
package com.glxp.udidl.admin.service.udchs.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.chs.YbHcflMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.udchs.YbHcflService;
import com.glxp.udidl.admin.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class YbHcflServiceImpl implements YbHcflService {
@Autowired
private YbHcflMapper mapper;
@Override
public BaseResponse getList(BaseParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
List<YbHcflEntity> list = mapper.list(param);
PageInfo<YbHcflEntity> pageInfo = new PageInfo<>(list);
PageSimpleResponse<YbHcflEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
}

@ -0,0 +1,33 @@
package com.glxp.udidl.admin.service.udchs.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.chs.YbHcxxGgMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcflEntity;
import com.glxp.udidl.admin.entity.chs.YbHcxxGgEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.udchs.YbHcxxGgService;
import com.glxp.udidl.admin.util.ResultVOUtils;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class YbHcxxGgServiceImpl implements YbHcxxGgService {
@Resource
YbHcxxGgMapper mapper;
@Override
public BaseResponse getList(BaseParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
List<YbHcxxGgEntity> list = mapper.list(param);
PageInfo<YbHcxxGgEntity> pageInfo = new PageInfo<>(list);
PageSimpleResponse<YbHcxxGgEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
}

@ -0,0 +1,32 @@
package com.glxp.udidl.admin.service.udchs.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.chs.YbHcxxMapper;
import com.glxp.udidl.admin.dto.udchs.BaseParam;
import com.glxp.udidl.admin.entity.chs.YbHcxxEntity;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.udchs.YbHcxxService;
import com.glxp.udidl.admin.util.ResultVOUtils;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class YbHcxxServiceImpl implements YbHcxxService {
@Resource
YbHcxxMapper mapper;
@Override
public BaseResponse getList(BaseParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
List<YbHcxxEntity> list = mapper.list(param);
PageInfo<YbHcxxEntity> pageInfo = new PageInfo<>(list);
PageSimpleResponse<YbHcxxEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
}

@ -1,13 +1,9 @@
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 com.glxp.udidl.admin.service.chsapi.ChsYbHcflService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.EnableScheduling;
@ -26,7 +22,7 @@ public class YbChsHcflTask implements SchedulingConfigurer {
private ScheduledMapper scheduledDao;
@Resource
private YbHcflService ybHcflService;
private ChsYbHcflService ybHcflService;
final Logger logger = LoggerFactory.getLogger(DownloadProductInfoTask.class);
@ -46,7 +42,7 @@ public class YbChsHcflTask implements SchedulingConfigurer {
}
private void process() {
System.out.println("开始执行更新医保数据");
ybHcflService.updateYbHcfList();
System.out.println("开始执行更新医保数据YbHcfl");
ybHcflService.updateYbHcflList();
}
}

@ -0,0 +1,48 @@
package com.glxp.udidl.admin.thread;
import com.glxp.udidl.admin.dao.info.ScheduledMapper;
import com.glxp.udidl.admin.entity.info.ScheduledEntity;
import com.glxp.udidl.admin.req.info.ScheduledRequest;
import com.glxp.udidl.admin.service.chsapi.ChsYbHcxxGgService;
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 YbChsHcxxGgTask implements SchedulingConfigurer {
@Resource
private ScheduledMapper scheduledDao;
@Resource
private ChsYbHcxxGgService ybHcxxGgService;
final Logger logger = LoggerFactory.getLogger(DownloadProductInfoTask.class);
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
scheduledTaskRegistrar.addTriggerTask(() -> process(),
triggerContext -> {
ScheduledRequest scheduledRequest = new ScheduledRequest();
scheduledRequest.setCronName("ybChsHcxxGgTask");
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("开始执行更新医保数据YbHcxxGg");
ybHcxxGgService.updateForEachYbHcxxList();
}
}

@ -0,0 +1,48 @@
package com.glxp.udidl.admin.thread;
import com.glxp.udidl.admin.dao.info.ScheduledMapper;
import com.glxp.udidl.admin.entity.info.ScheduledEntity;
import com.glxp.udidl.admin.req.info.ScheduledRequest;
import com.glxp.udidl.admin.service.chsapi.ChsYbHcxxService;
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 YbChsHcxxTask implements SchedulingConfigurer {
@Resource
private ScheduledMapper scheduledDao;
@Resource
private ChsYbHcxxService ybHcxxService;
final Logger logger = LoggerFactory.getLogger(DownloadProductInfoTask.class);
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
scheduledTaskRegistrar.addTriggerTask(() -> process(),
triggerContext -> {
ScheduledRequest scheduledRequest = new ScheduledRequest();
scheduledRequest.setCronName("ybChsHcxxTask");
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("开始执行更新医保数据YbHcxx");
ybHcxxService.updateYbHcxxList();
}
}

@ -1,57 +0,0 @@
<?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>

@ -1,42 +0,0 @@
<?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>

@ -48,7 +48,8 @@
)
VALUES
<foreach collection="list" item="item" separator=",">
(#{item.specificationCode},
(
#{item.specificationCode},
#{item.specificationId},
#{item.catalogcode},
#{item.catalogname1},
@ -69,28 +70,26 @@
#{item.productCount},
#{item.compCount},
#{item.regCount},
#{item.goodsCount})
#{item.goodsCount}
)
</foreach>
ON DUPLICATE KEY UPDATE
specificationId = VALUES(specificationId),
catalogcode = VALUES(catalogcode),
catalogname1 = VALUES(catalogname1),
catalogname2 = VALUES(catalogname2),
catalogname3 = VALUES(catalogname3),
commonnamecode = VALUES(commonnamecode),
commonname = VALUES(commonname),
matrialcode = VALUES(matrialcode),
matrial = VALUES(matrial),
characteristiccode = VALUES(characteristiccode),
characteristic = VALUES(characteristic),
separateCharges = VALUES(separateCharges),
paymentType = VALUES(paymentType),
paymentStandard = VALUES(paymentStandard),
isusing = VALUES(isusing),
specificationType = VALUES(specificationType),
productStatusS = VALUES(productStatusS),
productCount = VALUES(productCount),
compCount = VALUES(compCount),
@ -98,4 +97,18 @@
goodsCount = VALUES(goodsCount)
</insert>
<select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udchs.BaseParam">
select id, specificationCode, specificationId, catalogcode, catalogname1, catalogname2,
catalogname3, commonnamecode, commonname, matrialcode, matrial, characteristiccode,
characteristic, separateCharges, paymentType, paymentStandard, isusing, specificationType,
productStatusS, productCount, compCount, regCount, goodsCount
from yb_hcfl
<where>
<if test="specificationCode != '' and specificationCode != null">
and specificationCode like concat(#{specificationCode},'%')
</if>
</where>
order by specificationCode DESC
</select>
</mapper>

@ -0,0 +1,170 @@
<?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>
<!-- 自定义批量保存数据-->
<insert id="batchSaveOrUpdateBySpecificationCode" parameterType="int">
INSERT INTO
yb_hcxx_gg
(
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
)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.addTime},
#{item.addUserId},
#{item.addUserName},
#{item.auditRemark},
#{item.auditUserId},
#{item.auditUserName},
#{item.catalogCode},
#{item.catalogname1},
#{item.catalogname2},
#{item.catalogname3},
#{item.characteristic},
#{item.codeOld},
#{item.codeShow},
#{item.commonname},
#{item.companyName},
#{item.dataType},
#{item.ggxhCode},
#{item.goodsid},
#{item.isUsing},
#{item.lastUpdateTime},
#{item.lastUpdateUserId},
#{item.lastUpdateUserName},
#{item.mapingCode},
#{item.matrial},
#{item.model},
#{item.oldregcardnm},
#{item.productName},
#{item.productid},
#{item.productionCode},
#{item.regcardName},
#{item.regcardid},
#{item.regcardnm},
#{item.registrant},
#{item.relationId},
#{item.relationStatus},
#{item.releaseVersion},
#{item.specification},
#{item.specificationCode},
#{item.udiCode}
)
</foreach>
ON DUPLICATE KEY UPDATE
addTime = VALUES(addTime),
addUserId = VALUES(addUserId),
addUserName = VALUES(addUserName),
auditRemark = VALUES(auditRemark),
auditUserId = VALUES(auditUserId),
auditUserName = VALUES(auditUserName),
catalogCode = VALUES(catalogCode),
catalogname1 = VALUES(catalogname1),
catalogname2 = VALUES(catalogname2),
catalogname3 = VALUES(catalogname3),
characteristic = VALUES(characteristic),
codeOld = VALUES(codeOld),
commonname = VALUES(commonname),
companyName = VALUES(companyName),
dataType = VALUES(dataType),
ggxhCode = VALUES(ggxhCode),
goodsid = VALUES(goodsid),
isUsing = VALUES(isUsing),
lastUpdateTime = VALUES(lastUpdateTime),
lastUpdateUserId = VALUES(lastUpdateUserId),
lastUpdateUserName = VALUES(lastUpdateUserName),
mapingCode = VALUES(mapingCode),
matrial = VALUES(matrial),
model = VALUES(model),
oldregcardnm = VALUES(oldregcardnm),
productName = VALUES(productName),
productid = VALUES(productid),
productionCode = VALUES(productionCode),
regcardName = VALUES(regcardName),
regcardid = VALUES(regcardid),
regcardnm = VALUES(regcardnm),
registrant = VALUES(registrant),
relationId = VALUES(relationId),
relationStatus = VALUES(relationStatus),
releaseVersion = VALUES(releaseVersion),
specification = VALUES(specification),
specificationCode = VALUES(specificationCode),
udiCode = VALUES(udiCode)
</insert>
<select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udchs.BaseParam">
select 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
from yb_hcxx_gg
<where>
<if test="codeShow != '' and codeShow != null">
and codeShow like concat(#{codeShow},'%')
</if>
</where>
order by codeShow DESC
</select>
</mapper>

@ -0,0 +1,125 @@
<?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>
<!-- 自定义批量保存数据-->
<insert id="batchSaveOrUpdateBySpecificationCode" parameterType="int">
INSERT INTO
yb_hcxx
(
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
)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.specificationCode},
#{item.hcflCodeFk},
#{item.catalogname1},
#{item.catalogname2},
#{item.catalogname3},
#{item.characteristic},
#{item.codeCount},
#{item.codeCounts},
#{item.commonname},
#{item.compCounts},
#{item.companyName},
#{item.matrial},
#{item.model},
#{item.proCounts},
#{item.prodCount},
#{item.productName},
#{item.productionCode},
#{item.regCount},
#{item.regCounts},
#{item.regcardName},
#{item.regcardnm},
#{item.releaseVersion},
#{item.specCount},
#{item.specCounts},
#{item.specification},
#{item.totals}
)
</foreach>
ON DUPLICATE KEY UPDATE
hcflCodeFk = VALUES(hcflCodeFk),
catalogname1 = VALUES(catalogname1),
catalogname2 = VALUES(catalogname2),
catalogname3 = VALUES(catalogname3),
characteristic = VALUES(characteristic),
codeCount = VALUES(codeCount),
codeCounts = VALUES(codeCounts),
commonname = VALUES(commonname),
compCounts = VALUES(compCounts),
companyName = VALUES(companyName),
matrial = VALUES(matrial),
model = VALUES(model),
proCounts = VALUES(proCounts),
prodCount = VALUES(prodCount),
productName = VALUES(productName),
productionCode = VALUES(productionCode),
regCount = VALUES(regCount),
regCounts = VALUES(regCounts),
regcardName = VALUES(regcardName),
regcardnm = VALUES(regcardnm),
releaseVersion = VALUES(releaseVersion),
specCounts = VALUES(specCounts),
specification = VALUES(specification),
totals = VALUES(totals)
</insert>
<select id="list" resultMap="BaseResultMap" parameterType="com.glxp.udidl.admin.dto.udchs.BaseParam">
select 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
from yb_hcxx
<where>
<if test="specificationCode != '' and specificationCode != null">
and specificationCode like concat(#{specificationCode},'%')
</if>
</where>
order by specificationCode DESC
</select>
</mapper>
Loading…
Cancel
Save