feat: 医保功能
parent
5a07a31305
commit
4d384129b8
@ -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> {
|
||||
|
||||
}
|
@ -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);
|
||||
}
|
||||
}
|
@ -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>
|
@ -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…
Reference in New Issue