Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/main/resources/application-dev.yml
master
x_z 2 years ago
commit 4977f8f52f

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.controller.device; package com.glxp.udidl.admin.controller.device;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
@ -13,10 +14,12 @@ import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.admin.res.BaseResponse; import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse; import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.res.udid.ProductInfoResponse; import com.glxp.udidl.admin.res.udid.ProductInfoResponse;
import com.glxp.udidl.admin.res.udid.VailUdiReponse;
import com.glxp.udidl.admin.service.inout.ProductInfoService; import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.UdiCompanyService; import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.util.BeanUtils; import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.FilterUdiUtils; import com.glxp.udidl.admin.util.FilterUdiUtils;
import com.glxp.udidl.admin.util.RedisUtil;
import com.glxp.udidl.admin.util.ResultVOUtils; import com.glxp.udidl.admin.util.ResultVOUtils;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParam;
@ -39,12 +42,15 @@ public class ProductInfoController {
ProductInfoService productInfoService; ProductInfoService productInfoService;
@Resource @Resource
UdiCompanyService udiCompanyService; UdiCompanyService udiCompanyService;
@Resource
RedisUtil redisUtil;
//手持枪扫码查询 //手持枪扫码查询
@ApiOperation(value = "手持枪扫码查询", response = ProductInfoEntity.class) @ApiOperation(value = "手持枪扫码查询", response = ProductInfoEntity.class)
@AuthRuleAnnotation("udidl/device/findBydi") @AuthRuleAnnotation("udidl/device/findBydi")
@ApiImplicitParams({@ApiImplicitParam(name = "nameCode", value = "UDI码", required = true)}) @ApiImplicitParams({@ApiImplicitParam(name = "nameCode", value = "UDI码", required = true)})
@GetMapping("udidl/device/findBydi") @GetMapping("udidl/device/findBydi")
public BaseResponse findProductInfo(String nameCode) { public BaseResponse findProductInfo(String nameCode) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
String key = nameCode; String key = nameCode;
@ -131,7 +137,7 @@ public class ProductInfoController {
@GetMapping("udidl/udiwms/syncUdi") @GetMapping("udidl/udiwms/syncUdi")
public BaseResponse syncUdi(SyncUdiRequest syncUdiRequest) { public BaseResponse syncUdi(SyncUdiRequest syncUdiRequest) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
BeanUtils.copyProperties(productInfoFilterRequest, syncUdiRequest); BeanUtils.copyProperties(syncUdiRequest, productInfoFilterRequest);
if (productInfoFilterRequest.getPage() == null || productInfoFilterRequest.getLimit() == null) if (productInfoFilterRequest.getPage() == null || productInfoFilterRequest.getLimit() == null)
return ResultVOUtils.error(500, "分页参数不能为空"); return ResultVOUtils.error(500, "分页参数不能为空");
List<ProductInfoEntity> productInfoEntityList = productInfoService.syncDlUdi(productInfoFilterRequest); List<ProductInfoEntity> productInfoEntityList = productInfoService.syncDlUdi(productInfoFilterRequest);
@ -200,6 +206,8 @@ public class ProductInfoController {
@AuthRuleAnnotation("udidl/device/filterAllUdi") @AuthRuleAnnotation("udidl/device/filterAllUdi")
@GetMapping("udidl/device/filterAllUdi") @GetMapping("udidl/device/filterAllUdi")
public BaseResponse filterAllUdi(ProductInfoFilterRequest productInfoFilterRequest) { public BaseResponse filterAllUdi(ProductInfoFilterRequest productInfoFilterRequest) {
//过滤--1.参数不能全未空 //过滤--1.参数不能全未空
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) && if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) &&
(productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) && (productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) &&
@ -238,11 +246,23 @@ public class ProductInfoController {
return ResultVOUtils.error(500, "请输入完整的产品通用名称!"); return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
} }
productInfoFilterRequest.setIsNewest(1); productInfoFilterRequest.setIsNewest(1);
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
PageInfo<ProductInfoEntity> pageInfo; String keyCache = productInfoFilterRequest.toCacheKey();
pageInfo = new PageInfo<>(productInfoEntityList); if (StrUtil.isEmpty(keyCache)) {
return ResultVOUtils.error(500, "查询条件不能为空!");
}
String totalStr = (String) redisUtil.get(keyCache);
long total = 0;
if (StrUtil.isEmpty(totalStr)) {
total = productInfoService.filterUdiNoPageCount(productInfoFilterRequest);
redisUtil.set(keyCache, total + "");
} else {
total = Long.parseLong(totalStr);
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>(); PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal()); pageSimpleResponse.setTotal(total);
pageSimpleResponse.setList(productInfoEntityList); pageSimpleResponse.setList(productInfoEntityList);
return ResultVOUtils.success(pageSimpleResponse); return ResultVOUtils.success(pageSimpleResponse);
} }
@ -287,11 +307,22 @@ public class ProductInfoController {
return ResultVOUtils.error(500, "请输入完整的产品通用名称!"); return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
} }
productInfoFilterRequest.setIsNewest(1); productInfoFilterRequest.setIsNewest(1);
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
PageInfo<ProductInfoEntity> pageInfo; String keyCache = productInfoFilterRequest.toCacheKey();
pageInfo = new PageInfo<>(productInfoEntityList); if (StrUtil.isEmpty(keyCache)) {
return ResultVOUtils.error(500, "查询条件不能为空!");
}
String totalStr = (String) redisUtil.get(keyCache);
long total = 0;
if (StrUtil.isEmpty(totalStr)) {
total = productInfoService.filterUdiNoPageCount(productInfoFilterRequest);
redisUtil.set(keyCache, total + "");
} else {
total = Long.parseLong(totalStr);
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>(); PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal()); pageSimpleResponse.setTotal(total);
pageSimpleResponse.setList(productInfoEntityList); pageSimpleResponse.setList(productInfoEntityList);
return ResultVOUtils.success(pageSimpleResponse); return ResultVOUtils.success(pageSimpleResponse);
} }
@ -327,4 +358,66 @@ public class ProductInfoController {
return ResultVOUtils.success(productInfoService.findLastVersion(productInfoFilterRequest)); return ResultVOUtils.success(productInfoService.findLastVersion(productInfoFilterRequest));
} }
@ApiOperation(value = "校验UDI完整性", response = ProductInfoEntity.class)
@ApiImplicitParams({@ApiImplicitParam(name = "code", value = "UDI码", required = true)})
@GetMapping("udidl/device/vailUdiCode")
public BaseResponse vailUdiCode(String code) {
if (StrUtil.isEmpty(code)) {
return ResultVOUtils.error(500, "查询条件不能为空!");
}
UdiEntity udiEntity = FilterUdiUtils.getUdi(code);
if (udiEntity == null) {
return ResultVOUtils.error(500, "UDI码格式错误");
} else {
if (StrUtil.isNotEmpty(udiEntity.getUdi())) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(udiEntity.getUdi());
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterProductInfo(productInfoFilterRequest);
if (CollUtil.isEmpty(productInfoEntityList)) {
return ResultVOUtils.error(500, "未查询到该UDI码国家库产品信息");
} else {
ProductInfoEntity productInfoEntity = productInfoEntityList.get(0);
String lostMsg = "";
boolean checkSuccess = true;
if ("是".equals(productInfoEntity.getScbssfbhph()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
checkSuccess = false;
lostMsg = lostMsg + ",批次号";
}
if ("是".equals(productInfoEntity.getScbssfbhscrq()) && StrUtil.isEmpty(udiEntity.getProduceDate())) {
checkSuccess = false;
lostMsg = lostMsg + ",生产日期";
}
if ("是".equals(productInfoEntity.getScbssfbhsxrq()) && StrUtil.isEmpty(udiEntity.getExpireDate())) {
checkSuccess = false;
lostMsg = lostMsg + ",失效日期";
}
if (("是".equals(productInfoEntity.getScbssfbhxlh()) && StrUtil.isEmpty(udiEntity.getSerialNo()))
) {
checkSuccess = false;
lostMsg = lostMsg + ",序列号";
}
if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) {
return ResultVOUtils.error(504, "序列号超出20位");
}
if (StrUtil.isNotEmpty(udiEntity.getBatchNo()) && udiEntity.getBatchNo().length() > 20) {
return ResultVOUtils.error(504, "批次号超出20位");
}
if (StrUtil.isEmpty(udiEntity.getSerialNo()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
checkSuccess = false;
}
if (checkSuccess) {
return ResultVOUtils.success(productInfoEntity);
} else {
return ResultVOUtils.error(500, "UDI码格式错误,缺少"+lostMsg.substring(1));
}
}
} else {
return ResultVOUtils.error(500, "UDI码格式错误");
}
}
}
} }

@ -69,7 +69,7 @@ public class UdiCompanyController {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
BeanUtils.copyProperties(filterCompanyDiRequest, productInfoFilterRequest); BeanUtils.copyProperties(filterCompanyDiRequest, productInfoFilterRequest);
if (StrUtil.isNotEmpty(productInfoFilterRequest.getTyshxydm())) { if (StrUtil.isEmpty(productInfoFilterRequest.getTyshxydm())) {
return ResultVOUtils.error(500, "统一社会信用代码不能为空!"); return ResultVOUtils.error(500, "统一社会信用代码不能为空!");
} }
List<ProductInfoEntity> productInfoEntities; List<ProductInfoEntity> productInfoEntities;

@ -129,6 +129,13 @@ public class UdidlDeviceController {
return deviceSyncService.searchDlByDi(deviceId); return deviceSyncService.searchDlByDi(deviceId);
} }
@AuthRuleAnnotation("udidl_udidlByUuid_all")
@GetMapping("udidl/device/searchDlByUuid")
public BaseResponse searchDlByUuid(String uuid) {
return deviceSyncService.searchDlByUuid(uuid);
}
/** /**
* *
* *

@ -39,6 +39,10 @@ public interface ProductInfoMapper extends BaseMapper<ProductInfoEntity> {
List<ProductInfoEntity> filterUdi(ProductInfoFilterRequest productInfoFilterRequest); List<ProductInfoEntity> filterUdi(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> filterUdiNoPage(ProductInfoFilterRequest productInfoFilterRequest);
Long filterUdiNoPageCount(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> syncDlUdi(ProductInfoFilterRequest productInfoFilterRequest); List<ProductInfoEntity> syncDlUdi(ProductInfoFilterRequest productInfoFilterRequest);
List<String> filterUuidByCreditNo(ProductInfoFilterRequest productInfoFilterRequest); List<String> filterUuidByCreditNo(ProductInfoFilterRequest productInfoFilterRequest);

@ -53,6 +53,8 @@ public interface DeviceMapper extends BaseMapper<Device> {
String selectisSame(@Param("deviceRecordKey") String deviceRecordKey, @Param("versionNumber") String versionNumber); String selectisSame(@Param("deviceRecordKey") String deviceRecordKey, @Param("versionNumber") String versionNumber);
String selectDiIsSame(@Param("zxxsdycpbs") String zxxsdycpbs, @Param("versionNumber") String versionNumber);
String selectKey(@Param("zxxsdycpbs") String zxxsdycpbs); String selectKey(@Param("zxxsdycpbs") String zxxsdycpbs);
List<Device> downloadDevice(DownloadUdiRequest downloadUdiRequest); List<Device> downloadDevice(DownloadUdiRequest downloadUdiRequest);

@ -2,10 +2,12 @@ package com.glxp.udidl.admin.entity.udid;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date; import java.util.Date;
@ApiModel(value = "医疗器械信息实体") @ApiModel(value = "医疗器械信息实体")
@Data
public class Device { public class Device {

@ -43,4 +43,10 @@ public class ProductInfoFilterRequest extends ListPageRequest {
@ApiModelProperty(value = "更新时间") @ApiModelProperty(value = "更新时间")
private String updateTime; private String updateTime;
public String toCacheKey() {
return nameCode + deviceRecordKey + uuid + cpmctymc + ylqxzcrbarmc + ggxh + tyshxydm + showHis + diType + zczbhhzbapzbh + updateTime;
}
} }

@ -0,0 +1,10 @@
package com.glxp.udidl.admin.res.udid;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import lombok.Data;
@Data
public class VailUdiReponse {
private String errMsg;
private ProductInfoEntity productInfoEntity;
}

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.service.dataSync; package com.glxp.udidl.admin.service.dataSync;
import cn.hutool.core.util.StrUtil;
import com.glxp.udidl.admin.entity.udid.*; import com.glxp.udidl.admin.entity.udid.*;
import com.glxp.udidl.admin.res.udid.DataSetResult; import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.service.inout.DeviceService; import com.glxp.udidl.admin.service.inout.DeviceService;
@ -43,7 +44,7 @@ public class DeviceSaveService {
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) { for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
//1:判断数据是否存在 //1:判断数据是否存在
if (deviceService.selectisSame(item.getDeviceRecordKey(), item.getVersionNumber() + "") != null) if (StrUtil.isNotEmpty(deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "")))
continue; continue;
Device device = responseToDevice(item); Device device = responseToDevice(item);
String uuid = getUUId(); String uuid = getUUId();

@ -178,6 +178,14 @@ public class DeviceSyncService {
return ResultVOUtils.success(productInfoEntityList); return ResultVOUtils.success(productInfoEntityList);
} }
public BaseResponse searchDlByUuid(String uuid) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setUuid(uuid);
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
return ResultVOUtils.success(productInfoEntityList);
}
public void dlHistory(DataSetSingleResult result1) { public void dlHistory(DataSetSingleResult result1) {
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult(); DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();

@ -4,6 +4,7 @@ import com.glxp.udidl.admin.entity.udid.*;
import com.glxp.udidl.admin.req.ListPageRequest; import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.req.udid.DeviceListRequest; import com.glxp.udidl.admin.req.udid.DeviceListRequest;
import com.glxp.udidl.admin.req.udid.DeviceSearchRequest; import com.glxp.udidl.admin.req.udid.DeviceSearchRequest;
import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
@ -37,6 +38,8 @@ public interface DeviceService {
String selectisSame(String deviceRecordKey, String versionNumber); String selectisSame(String deviceRecordKey, String versionNumber);
String selectDiIsSame(String zxxsdycpbs, String versionNumber);
String selectKey(String zxxsdycpbs); String selectKey(String zxxsdycpbs);
List<String> findAllByZxxscpbs(); List<String> findAllByZxxscpbs();

@ -24,6 +24,11 @@ public interface ProductInfoService {
List<ProductInfoEntity> filterUdi(ProductInfoFilterRequest productInfoFilterRequest); List<ProductInfoEntity> filterUdi(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> filterUdiNoPage(ProductInfoFilterRequest productInfoFilterRequest);
Long filterUdiNoPageCount(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> selectByUuid(String uuid); List<ProductInfoEntity> selectByUuid(String uuid);
List<ProductInfoEntity> syncDlUdi(ProductInfoFilterRequest productInfoFilterRequest); List<ProductInfoEntity> syncDlUdi(ProductInfoFilterRequest productInfoFilterRequest);

@ -189,6 +189,11 @@ public class DeviceServiceImpl implements DeviceService {
return deviceMapper.selectisSame(deviceRecordKey, versionNumber); return deviceMapper.selectisSame(deviceRecordKey, versionNumber);
} }
@Override
public String selectDiIsSame(String zxxsdycpbs, String versionNumber) {
return deviceMapper.selectDiIsSame(zxxsdycpbs, versionNumber);
}
@Override @Override
public String selectKey(String zxxsdycpbs) { public String selectKey(String zxxsdycpbs) {
return deviceMapper.selectKey(zxxsdycpbs); return deviceMapper.selectKey(zxxsdycpbs);

@ -6,6 +6,7 @@ import com.glxp.udidl.admin.dao.udi.ProductInfoMapper;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest; import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.service.inout.ProductInfoService; import com.glxp.udidl.admin.service.inout.ProductInfoService;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@ -100,6 +101,43 @@ public class ProductInfoServiceImpl implements ProductInfoService {
return data; return data;
} }
@Override
public List<ProductInfoEntity> filterUdiNoPage(ProductInfoFilterRequest productInfoFilterRequest) {
if (productInfoFilterRequest == null) {
return Collections.emptyList();
}
if (productInfoFilterRequest.getPage() != null) {
int offset = (productInfoFilterRequest.getPage() - 1) * productInfoFilterRequest.getLimit();
if (offset < 0) {
offset = 0;
}
productInfoFilterRequest.setPage(offset);
productInfoFilterRequest.setLimit(productInfoFilterRequest.getLimit());
} else {
productInfoFilterRequest.setPage(1);
productInfoFilterRequest.setLimit(10);
}
List<ProductInfoEntity> data = productInfoDao.filterUdiNoPage(productInfoFilterRequest);
return data;
}
@Override
public Long filterUdiNoPageCount(ProductInfoFilterRequest request) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
BeanUtils.copyProperties(request, productInfoFilterRequest);
if (productInfoFilterRequest.getPage() != null) {
int offset = (productInfoFilterRequest.getPage() - 1) * productInfoFilterRequest.getLimit();
productInfoFilterRequest.setPage(offset);
productInfoFilterRequest.setLimit(productInfoFilterRequest.getLimit());
}
return productInfoDao.filterUdiNoPageCount(productInfoFilterRequest);
}
@Override @Override
public List<ProductInfoEntity> selectByUuid(String uuid) { public List<ProductInfoEntity> selectByUuid(String uuid) {
List<ProductInfoEntity> data = productInfoDao.selectByUuid(uuid); List<ProductInfoEntity> data = productInfoDao.selectByUuid(uuid);

@ -128,10 +128,10 @@ public class UdiTransferUtils {
productInfoEntity.setZxxsbzbhsydysl(0); productInfoEntity.setZxxsbzbhsydysl(0);
productInfoEntity.setDiType(3); productInfoEntity.setDiType(3);
productInfoEntity.setSjcpbm(deviceEntity.getZxxsdycpbs()); productInfoEntity.setSjcpbm(deviceEntity.getZxxsdycpbs());
productInfoEntity.setNameCode(deviceEntity.getSydycpbs()); productInfoEntity.setNameCode(deviceEntity.getBtcpbs());
productInfoEntity.setUpdateTime(new Date()); productInfoEntity.setUpdateTime(new Date());
productInfoService.insertProductInfo(productInfoEntity); productInfoService.insertProductInfo(productInfoEntity);
productInfoEntity.setBhxjcpbm(deviceEntity.getSydycpbs()); productInfoEntity.setBhxjcpbm(deviceEntity.getBtcpbs());
productInfoEntity.setBhxjsl(1); productInfoEntity.setBhxjsl(1);
productInfoEntity.setPackLevel(2 + ""); productInfoEntity.setPackLevel(2 + "");
productInfoEntity.setZxxsbzbhsydysl(1); productInfoEntity.setZxxsbzbhsydysl(1);

@ -1,10 +1,13 @@
package com.glxp.udidl.admin.util; package com.glxp.udidl.admin.util;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.db.nosql.redis.RedisDS; import cn.hutool.db.nosql.redis.RedisDS;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import redis.clients.jedis.Jedis; import redis.clients.jedis.Jedis;
import java.util.Set;
/** /**
* redis * redis
*/ */
@ -46,4 +49,16 @@ public class RedisUtil {
return true; return true;
} }
//模糊匹配删除
public void deleteByPrex(String prex) {
Set<String> keys = jedis.keys(prex);
if (CollUtil.isNotEmpty(keys)) {
for (String str : keys) {
jedis.del(str);
}
}
}
} }

@ -7,53 +7,55 @@ import java.util.Iterator;
*/ */
final class Gs1128Utils { final class Gs1128Utils {
public static final String PREFIX = "]C1"; public static final String PREFIX = "]C1";
public static final char END_AI_VARIED = (char) 29; public static final char END_AI_VARIED = (char) 29;
private Gs1128Utils() { private Gs1128Utils() {
super(); super();
} }
public static Iterator<Character> iterator(String value) { public static Iterator<Character> iterator(String value) {
return value.chars().mapToObj(c -> (char) c).iterator(); return value.chars().mapToObj(c -> (char) c).iterator();
}
public static String value(AI ai, Iterator<Character> iterator) {
Format format = Format.valueOf(ai.getFormat());
if (format.isVaried()) {
return variedValue(iterator);
} else {
return fixedValue(format.getLength(), iterator);
} }
}
public static String value(AI ai, Iterator<Character> iterator) {
public static String value(Session session, String value) { Format format = Format.valueOf(ai.getFormat());
Iterator<Character> iterator = iterator(value); if (format.isVaried()) {
if (session.isVaried()) { return variedValue(iterator);
return variedValue(iterator); } else {
} else { return fixedValue(format.getLength(), iterator);
return fixedValue(session.getLength(), iterator); }
} }
}
private static String fixedValue(int size, Iterator<Character> iterator) { public static String value(Session session, String value) {
StringBuilder builder = new StringBuilder(); Iterator<Character> iterator = iterator(value);
for (int i = 0; i < size; i++) { if (session.isVaried()) {
builder.append(iterator.next()); return variedValue(iterator);
} else {
return fixedValue(session.getLength(), iterator);
}
} }
return builder.toString();
} private static String fixedValue(int size, Iterator<Character> iterator) {
StringBuilder builder = new StringBuilder();
private static String variedValue(Iterator<Character> iterator) { for (int i = 0; i < size; i++) {
StringBuilder builder = new StringBuilder(); if (iterator.hasNext()) {
while (iterator.hasNext()) { builder.append(iterator.next());
char value = iterator.next(); }
if (value == END_AI_VARIED) { }
break; return builder.toString();
} }
builder.append(value);
private static String variedValue(Iterator<Character> iterator) {
StringBuilder builder = new StringBuilder();
while (iterator.hasNext()) {
char value = iterator.next();
if (value == END_AI_VARIED) {
break;
}
builder.append(value);
}
return builder.toString();
} }
return builder.toString();
}
} }

@ -2,7 +2,7 @@ server:
port: 9994 port: 9994
spring: spring:
profiles: profiles:
active: dev active: pro
jmx: jmx:
enabled: false enabled: false

@ -230,6 +230,101 @@
</if> </if>
</where> </where>
</select> </select>
<select id="filterUdiNoPage" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select *
from productinfo
<where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc = #{ylqxzcrbarmc}
</if>
<if test="ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat('%', #{cpmctymc}, '%')
</if>
<if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode}, '%')
</if>
<if test="uuid != '' and uuid != null">
AND uuid = #{uuid}
</if>
<if test="ggxh != '' and ggxh != null">
AND ggxh LIKE concat('%', #{ggxh}, '%')
</if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
AND zczbhhzbapzbh LIKE concat('%', #{zczbhhzbapzbh}, '%')
</if>
<if test="deviceRecordKey != '' and deviceRecordKey != null">
AND deviceRecordKey = #{deviceRecordKey}
</if>
<if test="updateTime != null and updateTime != ''">
<![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if>
<if test="isNewest != null and isNewest != ''">
AND isNewest = #{isNewest}
</if>
<if test="diType != '' and diType != null">
AND diType = #{diType}
</if>
</where>
limit #{page},#{limit}
</select>
<select id="filterUdiNoPageCount" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="java.lang.Long">
select count(0)
from productinfo
<where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc = #{ylqxzcrbarmc}
</if>
<if test="ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat('%', #{cpmctymc}, '%')
</if>
<if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode}, '%')
</if>
<if test="uuid != '' and uuid != null">
AND uuid = #{uuid}
</if>
<if test="ggxh != '' and ggxh != null">
AND ggxh LIKE concat('%', #{ggxh}, '%')
</if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
AND zczbhhzbapzbh LIKE concat('%', #{zczbhhzbapzbh}, '%')
</if>
<if test="deviceRecordKey != '' and deviceRecordKey != null">
AND deviceRecordKey = #{deviceRecordKey}
</if>
<if test="updateTime != null and updateTime != ''">
<![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if>
<if test="isNewest != null and isNewest != ''">
AND isNewest = #{isNewest}
</if>
<if test="diType != '' and diType != null">
AND diType = #{diType}
</if>
</where>
</select>
<select id="selectByUpdateTime" <select id="selectByUpdateTime"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select * select *
@ -335,7 +430,8 @@
#{sfwwjbz}, #{sfwwjbz},
#{syqsfxyjxmj}, #{syqsfxyjxmj},
#{mjfs}, #{mjfs},
#{qtxxdwzlj},#{categoryName} #{qtxxdwzlj},
#{categoryName}
) )
</insert> </insert>

@ -55,43 +55,44 @@
</if> </if>
</where> </where>
limit #{page} limit #{page}
,#{limit} ,#{limit}
</select> </select>
<select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String"> <select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String">
select ylqxzcrbarmc select ylqxzcrbarmc
from udicompany from udicompany
where ylqxzcrbarmc like concat('%', #{name}, '%') where ylqxzcrbarmc like concat('%', #{name}, '%') limit 50
limit 50
</select> </select>
<insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> <insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
REPLACE REPLACE
INTO udicompany INTO udicompany
(tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh, (tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh,
qylxrcz, qylxryx, updateTime) qylxrcz, qylxryx, updateTime)
values (#{tyshxydm}, values (
#{ylqxzcrbarmc}, #{tyshxydm},
#{ylqxzcrbarywmc}, #{ylqxzcrbarmc},
#{qylxrdh}, #{ylqxzcrbarywmc},
#{qylxrcz}, #{qylxrdh},
#{qylxryx}, #{qylxrcz},
#{updateTime}) #{qylxryx},
#{updateTime}
)
</insert> </insert>
<insert id="insertUdiCompanys" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> <insert id="insertUdiCompanys" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
replace INTO udicompany(tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh, replace INTO udicompany(tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh,
qylxrcz, qylxryx, updateTime) qylxrcz, qylxryx, updateTime)
values values
<foreach collection="udiCompanyEntities" item="item" index="index" <foreach collection="udiCompanyEntities" item="item" index="index"
separator=","> separator=",">
(#{item.tyshxydm}, (#{item.tyshxydm},
#{item.ylqxzcrbarmc}, #{item.ylqxzcrbarmc},
#{item.ylqxzcrbarywmc}, #{item.ylqxzcrbarywmc},
#{item.qylxrdh}, #{item.qylxrdh},
#{item.qylxrcz}, #{item.qylxrcz},
#{item.qylxryx}),#{item.updateTime} #{item.qylxryx}),#{item.updateTime}
</foreach> </foreach>
</insert> </insert>
<delete id="deleteById" parameterType="Map"> <delete id="deleteById" parameterType="Map">

@ -169,7 +169,7 @@
ylqxzcrbarmc, ylqxzcrbarywmc, zczbhhzbapzbh, ylqxzcrbarmc, ylqxzcrbarywmc, zczbhhzbapzbh,
zdcfsycs, zxxsdycpbs, bszt, zdcfsycs, zxxsdycpbs, bszt,
sfyzcbayz, zcbacpbs, zxxsdyzsydydsl, sfyzcbayz, zcbacpbs, zxxsdyzsydydsl,
deviceHistoryRecordKey, bssjzt, lastModifyTime, requestDate,hchzsb,cplx) deviceHistoryRecordKey, bssjzt, lastModifyTime, requestDate, hchzsb, cplx)
values (#{uuid,jdbcType=VARCHAR}, #{devicerecordkey,jdbcType=VARCHAR}, #{btcpbs,jdbcType=VARCHAR}, values (#{uuid,jdbcType=VARCHAR}, #{devicerecordkey,jdbcType=VARCHAR}, #{btcpbs,jdbcType=VARCHAR},
#{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR}, #{cgzmraqxgxx,jdbcType=VARCHAR}, #{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR}, #{cgzmraqxgxx,jdbcType=VARCHAR},
#{cpbsbmtxmc,jdbcType=VARCHAR}, #{cpbsbmtxmc,jdbcType=VARCHAR},
@ -187,7 +187,7 @@
#{zdcfsycs,jdbcType=VARCHAR}, #{zxxsdycpbs,jdbcType=VARCHAR}, #{bszt,jdbcType=VARCHAR}, #{zdcfsycs,jdbcType=VARCHAR}, #{zxxsdycpbs,jdbcType=VARCHAR}, #{bszt,jdbcType=VARCHAR},
#{sfyzcbayz,jdbcType=VARCHAR}, #{zcbacpbs,jdbcType=VARCHAR}, #{zxxsdyzsydydsl,jdbcType=VARCHAR}, #{sfyzcbayz,jdbcType=VARCHAR}, #{zcbacpbs,jdbcType=VARCHAR}, #{zxxsdyzsydydsl,jdbcType=VARCHAR},
#{devicehistoryrecordkey,jdbcType=VARCHAR}, #{bssjzt,jdbcType=VARCHAR}, #{devicehistoryrecordkey,jdbcType=VARCHAR}, #{bssjzt,jdbcType=VARCHAR},
#{lastModifyTime,jdbcType=VARCHAR}, #{requestDate},#{hchzsb},#{cplx}) #{lastModifyTime,jdbcType=VARCHAR}, #{requestDate}, #{hchzsb}, #{cplx})
</insert> </insert>
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Device"> <insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Device">
insert into device insert into device
@ -890,8 +890,7 @@
zcbacpbs = #{zcbacpbs,jdbcType=VARCHAR}, zcbacpbs = #{zcbacpbs,jdbcType=VARCHAR},
zxxsdyzsydydsl = #{zxxsdyzsydydsl,jdbcType=VARCHAR}, zxxsdyzsydydsl = #{zxxsdyzsydydsl,jdbcType=VARCHAR},
deviceHistoryRecordKey = #{devicehistoryrecordkey,jdbcType=VARCHAR}, deviceHistoryRecordKey = #{devicehistoryrecordkey,jdbcType=VARCHAR},
bssjzt = #{bssjzt,jdbcType=VARCHAR} bssjzt = #{bssjzt,jdbcType=VARCHAR} hchzsb = #{hchzsb,jdbcType=VARCHAR}
hchzsb = #{hchzsb,jdbcType=VARCHAR}
where uuid = #{uuid,jdbcType=VARCHAR} where uuid = #{uuid,jdbcType=VARCHAR}
</update> </update>
@ -990,6 +989,14 @@
and versionNumber = #{versionNumber} limit 1 and versionNumber = #{versionNumber} limit 1
</select> </select>
<select id="selectDiIsSame" parameterType="Map" resultType="java.lang.String">
SELECT uuid
from device
WHERE zxxsdycpbs = #{zxxsdycpbs}
and versionNumber = #{versionNumber} limit 1
</select>
<select id="selectKey" parameterType="Map" resultType="java.lang.String"> <select id="selectKey" parameterType="Map" resultType="java.lang.String">
SELECT uuid SELECT uuid
from device from device

Loading…
Cancel
Save