最新版本问题

zhairh
anthonywj 2 years ago
parent 391accc474
commit 1e96d94fdf

@ -3,8 +3,10 @@ package com.glxp.udidl.admin.controller.device;
import cn.hutool.core.collection.CollUtil; import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.glxp.udidl.admin.constant.Constant; import com.glxp.udidl.admin.constant.Constant;
import com.glxp.udidl.admin.dao.udi.ProductInfoMapper; import com.glxp.udidl.admin.dao.udi.ProductInfoMapper;
import com.glxp.udidl.admin.dao.udid.DeviceMapper;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity; import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.Contactlist; import com.glxp.udidl.admin.entity.udid.Contactlist;
@ -20,6 +22,7 @@ import com.glxp.udidl.admin.service.inout.DeviceService;
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.thread.UdiTransferUtils; import com.glxp.udidl.admin.thread.UdiTransferUtils;
import com.glxp.udidl.admin.util.IntUtil;
import com.glxp.udidl.admin.util.RedisUtil; import com.glxp.udidl.admin.util.RedisUtil;
import com.glxp.udidl.admin.util.ResultVOUtils; import com.glxp.udidl.admin.util.ResultVOUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
@ -209,6 +212,31 @@ public class TestController {
return ResultVOUtils.success("总数=" + keys.size() + "\n"); return ResultVOUtils.success("总数=" + keys.size() + "\n");
} }
@Resource
DeviceMapper deviceMapper;
@GetMapping("udidl/device/transNewest")
public BaseResponse transNewest() {
List<Device> devices = deviceMapper.selectNew();
for (Device device : devices) {
List<ProductInfoEntity> productInfoEntityList = productInfoDao.selectList(new QueryWrapper<ProductInfoEntity>().eq("deviceRecordKey", device.getDevicerecordkey()));
if (CollUtil.isNotEmpty(productInfoEntityList) && productInfoEntityList.size() > 1) {
for (ProductInfoEntity productInfoEntity : productInfoEntityList) {
productInfoEntity.setIsNewest(false);
}
for (ProductInfoEntity productInfoEntity : productInfoEntityList) {
if (IntUtil.value(productInfoEntity.getVersionNumber()) == IntUtil.value(device.getVersionnumber())) {
productInfoEntity.setIsNewest(true);
}
productInfoService.updateProductInfo(productInfoEntity);
}
}
}
return ResultVOUtils.success();
}
} }

@ -92,6 +92,9 @@ public class UdiInfoController {
checkSuccess = false; checkSuccess = false;
lostMsg = lostMsg + ",序列号"; lostMsg = lostMsg + ",序列号";
} }
if (!checkSuccess) {
lostMsg = "UDI码格式错误,缺少" + lostMsg.substring(1);
}
if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) { if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) {
checkSuccess = false; checkSuccess = false;
lostMsg = lostMsg + ",序列号超出20位"; lostMsg = lostMsg + ",序列号超出20位";

@ -173,10 +173,7 @@ public class UdidlDeviceController {
@AuthRuleAnnotation("udidl/device/dlLastVersionByDi") @AuthRuleAnnotation("udidl/device/dlLastVersionByDi")
@GetMapping("udidl/device/dlLastVersionByDi") @GetMapping("udidl/device/dlLastVersionByDi")
public BaseResponse dlLastVersionByDi(String deviceId) { public BaseResponse dlLastVersionByDi(String deviceId) {
deviceSyncService.downloadSingle(deviceId, Constant.DL_TYPE_UPDATE); return deviceSyncService.searchDlLastByDi(deviceId);
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(deviceId);
return ResultVOUtils.success(productInfoService.findLastVersion(productInfoFilterRequest));
} }

@ -68,4 +68,6 @@ public interface DeviceMapper extends BaseMapper<Device> {
void updateDevice(Device device); void updateDevice(Device device);
List<Device> selectNew();
} }

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.entity.udi; package com.glxp.udidl.admin.entity.udi;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
@ -160,12 +161,16 @@ public class ProductInfoEntity {
//额外字段 //额外字段
@ApiModelProperty(value = "批次号") @ApiModelProperty(value = "批次号")
@TableField(exist = false)
private String batchNo; private String batchNo;
@ApiModelProperty(value = "生产日期") @ApiModelProperty(value = "生产日期")
@TableField(exist = false)
private String produceDate; private String produceDate;
@ApiModelProperty(value = "失效日期") @ApiModelProperty(value = "失效日期")
@TableField(exist = false)
private String expireDate; private String expireDate;
@ApiModelProperty(value = "序列号") @ApiModelProperty(value = "序列号")
@TableField(exist = false)
private String serialNo; private String serialNo;

@ -0,0 +1,7 @@
package com.glxp.udidl.admin.res.test;
import lombok.Data;
@Data
public class SelectNewResponse {
}

@ -2,6 +2,7 @@ package com.glxp.udidl.admin.service.dataSync;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.glxp.udidl.admin.constant.Constant; import com.glxp.udidl.admin.constant.Constant;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
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;
@ -10,6 +11,7 @@ import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.thread.UdiTransferUtils; import com.glxp.udidl.admin.thread.UdiTransferUtils;
import com.glxp.udidl.admin.util.BeanUtils; import com.glxp.udidl.admin.util.BeanUtils;
import com.glxp.udidl.admin.util.DateUtil; import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.IntUtil;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -54,10 +56,13 @@ public class DeviceSaveService {
String uuid = null; String uuid = null;
Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + ""); Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
if (dlType == Constant.DL_TYPE_ADD) { if (dlType == Constant.DL_TYPE_ADD) {
if (originDevice != null) if (originDevice != null){
updateNewest(originDevice);
continue; continue;
} }
}
//2,存储 deviceInfo //2,存储 deviceInfo
Device device = responseToDevice(item); Device device = responseToDevice(item);
@ -84,6 +89,7 @@ public class DeviceSaveService {
// uuid = getUUId(); // uuid = getUUId();
// device.setUuid(uuid); // device.setUuid(uuid);
// deviceService.insertDevice(device); // deviceService.insertDevice(device);
updateNewest(originDevice);
continue; continue;
} }
} }
@ -184,6 +190,16 @@ public class DeviceSaveService {
} }
return result; return result;
} }
@Resource
ProductInfoService productInfoService;
public void updateNewest(Device device){
if(!productInfoService.selectNewst(device.getDevicerecordkey(),true, IntUtil.value(device.getVersionnumber()))){
productInfoService.updateNoNewst(device.getDevicerecordkey(),false,null);
productInfoService.updateNoNewst(device.getDevicerecordkey(),true, IntUtil.value(device.getVersionnumber()));
}
}
/** /**
* device * device

@ -179,6 +179,25 @@ public class DeviceSyncService {
return ResultVOUtils.success(productInfoEntityList); return ResultVOUtils.success(productInfoEntityList);
} }
public BaseResponse searchDlLastByDi(String deviceId) {
List<ProductInfoEntity> productInfoEntityList;
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1)
return ResultVOUtils.error(-1, result1.getReturnMsg());
if (CollUtil.isNotEmpty(result1.getDataSet().getDeviceInfo())) {
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date(), Constant.DL_TYPE_UPDATE);
productInfoEntityList = searchByDI(deviceId);
} else {
return ResultVOUtils.error(501, "医疗器械唯一标识数据库未找到此产品DI,请检查是否输入正确或联系厂家是否已上传");
}
return ResultVOUtils.success(productInfoEntityList);
}
public List<ProductInfoEntity> searchByDI(String deviceId) { public List<ProductInfoEntity> searchByDI(String deviceId) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(deviceId); productInfoFilterRequest.setNameCode(deviceId);

@ -53,4 +53,6 @@ public interface ProductInfoService {
boolean updateProductInfoData(ProductInfoEntity productInfoEntity); boolean updateProductInfoData(ProductInfoEntity productInfoEntity);
boolean updateNoNewst(String deviceRecordKey,Boolean isNewst,Integer versionNum);
boolean selectNewst(String deviceRecordKey,Boolean isNewst,Integer versionNum);
} }

@ -1,6 +1,7 @@
package com.glxp.udidl.admin.service.inout.impl; package com.glxp.udidl.admin.service.inout.impl;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
import com.glxp.udidl.admin.dao.udi.ProductInfoMapper; import com.glxp.udidl.admin.dao.udi.ProductInfoMapper;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
@ -12,6 +13,7 @@ import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Collections; import java.util.Collections;
import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@ -213,6 +215,22 @@ public class ProductInfoServiceImpl implements ProductInfoService {
return productInfoDao.updateProductInfoData(productInfoEntity); return productInfoDao.updateProductInfoData(productInfoEntity);
} }
@Override
public boolean updateNoNewst(String deviceRecordKey, Boolean isNewst, Integer versionNum) {
ProductInfoEntity productInfoEntity = new ProductInfoEntity();
productInfoEntity.setIsNewest(isNewst);
productInfoEntity.setUpdateTime(new Date());
return productInfoDao.update(productInfoEntity,
new QueryWrapper<ProductInfoEntity>().eq("deviceRecordKey",deviceRecordKey)
.eq(versionNum!=null,"versionNumber",versionNum))>0;
}
@Override
public boolean selectNewst(String deviceRecordKey, Boolean isNewest, Integer versionNum) {
return productInfoDao.exists(new QueryWrapper<ProductInfoEntity>().eq("deviceRecordKey",deviceRecordKey)
.eq("isNewest",isNewest).eq("versionNumber",versionNum));
}
@Override @Override
public boolean deleteById(String id) { public boolean deleteById(String id) {
return productInfoDao.deleteById(id); return productInfoDao.deleteById(id);

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.thread; package com.glxp.udidl.admin.thread;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.glxp.udidl.admin.entity.udi.CountProductEntity; import com.glxp.udidl.admin.entity.udi.CountProductEntity;
import com.glxp.udidl.admin.entity.udi.ProductClassify; import com.glxp.udidl.admin.entity.udi.ProductClassify;
@ -193,40 +194,31 @@ public class UdiTransferUtils {
productInfoEntity.setSjcpbm(getSjcpbm(devicepackages, productInfoEntity.getNameCode())); productInfoEntity.setSjcpbm(getSjcpbm(devicepackages, productInfoEntity.getNameCode()));
productInfoEntity.setDiType(4); productInfoEntity.setDiType(4);
productInfoEntity.setUpdateTime(new Date()); productInfoEntity.setUpdateTime(new Date());
productInfoEntity.setIsNewest(true);
productInfoService.insertProductInfo(productInfoEntity); productInfoService.insertProductInfo(productInfoEntity);
} }
} }
//更新为最新版本 // //更新为最新版本
ProductInfoFilterRequest filterRequest1 = new ProductInfoFilterRequest(); ProductInfoFilterRequest filterRequest1 = new ProductInfoFilterRequest();
filterRequest1.setNameCode(di); filterRequest1.setNameCode(di);
List<ProductInfoEntity> updateEntitys = productInfoService.filterUdi(filterRequest1); List<ProductInfoEntity> updateEntitys = productInfoService.filterUdi(filterRequest1);
if (updateEntitys != null && updateEntitys.size() > 0) { if (updateEntitys != null && updateEntitys.size() > 0) {
//获取最高版本号
ProductInfoEntity updateEntity = updateEntitys.get(0);
for (ProductInfoEntity tempEntity : updateEntitys) {
if (tempEntity.getVersionNumber() > updateEntity.getVersionNumber()) {
updateEntity = tempEntity;
}
}
ProductInfoFilterRequest filterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest filterRequest = new ProductInfoFilterRequest();
filterRequest.setDeviceRecordKey(updateEntity.getDeviceRecordKey()); filterRequest.setDeviceRecordKey(productInfoEntity.getDeviceRecordKey());
List<ProductInfoEntity> temps = productInfoService.filterProductInfo(filterRequest); List<ProductInfoEntity> temps = productInfoService.filterProductInfo(filterRequest);
if (temps != null && temps.size() > 0) { if (CollUtil.isNotEmpty(temps)) {
for (ProductInfoEntity change : temps) { for (ProductInfoEntity change : temps) {
change.setIsNewest(false); change.setIsNewest(false);
change.setUpdateTime(new Date()); change.setUpdateTime(new Date());
productInfoService.updateProductInfo(change);
} }
for (ProductInfoEntity change : temps) {
if (productInfoEntity.getUuid().equals(change.getUuid())) {
change.setIsNewest(true);
change.setUpdateTime(new Date());
}
productInfoService.updateProductInfo(change);
} }
List<ProductInfoEntity> updates = productInfoService.selectByUuid(updateEntity.getUuid());
for (ProductInfoEntity update : updates) {
update.setIsNewest(true);
update.setUpdateTime(new Date());
productInfoService.updateProductInfo(update);
} }
} }

@ -0,0 +1,42 @@
package com.glxp.udidl.admin.util;
import cn.hutool.core.util.StrUtil;
public class IntUtil {
public static int value(Integer value) {
if (value == null)
return 0;
else return value.intValue();
}
public static long value(Long value) {
if (value == null)
return 0l;
else return value.longValue();
}
public static boolean value(Boolean value) {
if (value == null)
return false;
else return value;
}
public static int value(String value) {
if (StrUtil.isNotEmpty(value)) {
try {
int r = Integer.parseInt(value);
return r;
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
return 0;
}
}

@ -753,4 +753,6 @@
#{qtxxdwzlj}, #{qtxxdwzlj},
#{categoryName}) #{categoryName})
</insert> </insert>
</mapper> </mapper>

@ -114,12 +114,55 @@
</sql> </sql>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
uuid uuid
, deviceRecordKey, btcpbs, btcpbsyzxxsdycpbssfyz, cgzmraqxgxx, cpbsbmtxmc, cpbsfbrq, ,
cphhhbh, cplb, cpmctymc, cpms, flbm, ggxh, mjfs, qtxxdwzlj, qxlb, scbssfbhph, scbssfbhscrq, deviceRecordKey,
scbssfbhsxrq, scbssfbhxlh, sfbjwycxsy, sfwblztlcp, sfwwjbz, sfybtzjbs, spmc, sydycpbs, btcpbs,
syqsfxyjxmj, tscchcztj, tsccsm, tsrq, tyshxydm, versionNumber, versionStatus, versionTime, btcpbsyzxxsdycpbssfyz,
ybbm, yflbm, ylqxzcrbarmc, ylqxzcrbarywmc, zczbhhzbapzbh, zdcfsycs, zxxsdycpbs, bszt, cgzmraqxgxx,
sfyzcbayz, zcbacpbs, zxxsdyzsydydsl, deviceHistoryRecordKey, bssjzt,hchzsb,cplx cpbsbmtxmc,
cpbsfbrq,
cphhhbh,
cplb,
cpmctymc,
cpms,
flbm,
ggxh,
mjfs,
qtxxdwzlj,
qxlb,
scbssfbhph,
scbssfbhscrq,
scbssfbhsxrq,
scbssfbhxlh,
sfbjwycxsy,
sfwblztlcp,
sfwwjbz,
sfybtzjbs,
spmc,
sydycpbs,
syqsfxyjxmj,
tscchcztj,
tsccsm,
tsrq,
tyshxydm,
versionNumber,
versionStatus,
versionTime,
ybbm,
yflbm,
ylqxzcrbarmc,
ylqxzcrbarywmc,
zczbhhzbapzbh,
zdcfsycs,
zxxsdycpbs,
bszt,
sfyzcbayz,
zcbacpbs,
zxxsdyzsydydsl,
deviceHistoryRecordKey,
bssjzt,
hchzsb,
cplx
</sql> </sql>
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample" <select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample"
resultMap="BaseResultMap"> resultMap="BaseResultMap">
@ -148,7 +191,8 @@
where uuid = #{uuid,jdbcType=VARCHAR} where uuid = #{uuid,jdbcType=VARCHAR}
</delete> </delete>
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample"> <delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample">
delete from device delete
from device
<if test="_parameter != null"> <if test="_parameter != null">
<include refid="Example_Where_Clause"/> <include refid="Example_Where_Clause"/>
</if> </if>
@ -301,7 +345,6 @@
<if test="hchzsb != null"> <if test="hchzsb != null">
hchzsb, hchzsb,
</if> </if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="uuid != null"> <if test="uuid != null">
@ -448,12 +491,12 @@
<if test="hchzsb != null"> <if test="hchzsb != null">
#{hchzsb,jdbcType=VARCHAR}, #{hchzsb,jdbcType=VARCHAR},
</if> </if>
</trim> </trim>
</insert> </insert>
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample" <select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample"
resultType="java.lang.Long"> resultType="java.lang.Long">
select count(*) from device select count(*)
from device
<if test="_parameter != null"> <if test="_parameter != null">
<include refid="Example_Where_Clause"/> <include refid="Example_Where_Clause"/>
</if> </if>
@ -804,7 +847,6 @@
<if test="hchzsb != null"> <if test="hchzsb != null">
hchzsb = #{bssjzt,jdbcType=VARCHAR}, hchzsb = #{bssjzt,jdbcType=VARCHAR},
</if> </if>
</set> </set>
where uuid = #{uuid,jdbcType=VARCHAR} where uuid = #{uuid,jdbcType=VARCHAR}
</update> </update>
@ -855,7 +897,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} hchzsb = #{hchzsb,jdbcType=VARCHAR} bssjzt = #{bssjzt,jdbcType=VARCHAR} ,hchzsb = #{hchzsb,jdbcType=VARCHAR}
where uuid = #{uuid,jdbcType=VARCHAR} where uuid = #{uuid,jdbcType=VARCHAR}
</update> </update>
@ -863,8 +905,8 @@
<select id="searchBykey" parameterType="com.glxp.udidl.admin.req.udid.DeviceListRequest" resultMap="BaseResultMap"> <select id="searchBykey" parameterType="com.glxp.udidl.admin.req.udid.DeviceListRequest" resultMap="BaseResultMap">
select * select *
from device from device
WHERE (zxxsdycpbs like concat(#{key}, '%') or cpmctymc like concat(#{key}, '%')) limit #{page} WHERE (zxxsdycpbs like concat(#{key}, '%') or cpmctymc like concat(#{key}, '%'))
, #{limit} limit #{page} , #{limit}
</select> </select>
@ -875,49 +917,48 @@
</select> </select>
<select id="search" parameterType="com.glxp.udidl.admin.req.udid.DeviceSearchRequest" resultMap="BaseResultMap"> <select id="search" parameterType="com.glxp.udidl.admin.req.udid.DeviceSearchRequest" resultMap="BaseResultMap">
select * from device select *
from device
<where> <where>
<if test="zxxsdycpbs != '' and zxxsdycpbs!=null"> <if test="zxxsdycpbs != '' and zxxsdycpbs != null">
and zxxsdycpbs LIKE concat(#{zxxsdycpbs,jdbcType=VARCHAR},'%') and zxxsdycpbs LIKE concat(#{zxxsdycpbs,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="cpmctymc != '' and cpmctymc!=null"> <if test="cpmctymc != '' and cpmctymc != null">
and cpmctymc LIKE concat(#{cpmctymc,jdbcType=VARCHAR},'%') and cpmctymc LIKE concat(#{cpmctymc,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc!=null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
and ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc,jdbcType=VARCHAR},'%') and ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="ggxh != '' and ggxh!=null"> <if test="ggxh != '' and ggxh != null">
and ggxh LIKE concat(#{ggxh,jdbcType=VARCHAR},'%') and ggxh LIKE concat(#{ggxh,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh!=null"> <if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
and zczbhhzbapzbh LIKE concat(#{zczbhhzbapzbh,jdbcType=VARCHAR},'%') and zczbhhzbapzbh LIKE concat(#{zczbhhzbapzbh,jdbcType=VARCHAR}, '%')
</if> </if>
</where> </where>
limit #{page},#{limit} limit #{page},#{limit}
</select> </select>
<select id="getTotal" parameterType="com.glxp.udidl.admin.req.udid.DeviceSearchRequest" resultType="Long"> <select id="getTotal" parameterType="com.glxp.udidl.admin.req.udid.DeviceSearchRequest" resultType="Long">
select count(zxxsdycpbs) from device select count(zxxsdycpbs)
from device
<where> <where>
<if test="zxxsdycpbs != '' and zxxsdycpbs != null">
<if test="zxxsdycpbs != '' and zxxsdycpbs!=null"> and zxxsdycpbs LIKE concat(#{zxxsdycpbs,jdbcType=VARCHAR}, '%')
and zxxsdycpbs LIKE concat(#{zxxsdycpbs,jdbcType=VARCHAR},'%')
</if> </if>
<if test="cpmctymc != '' and cpmctymc!=null"> <if test="cpmctymc != '' and cpmctymc != null">
and cpmctymc LIKE concat(#{cpmctymc,jdbcType=VARCHAR},'%') and cpmctymc LIKE concat(#{cpmctymc,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc!=null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
and ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc,jdbcType=VARCHAR},'%') and ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="ggxh != '' and ggxh!=null"> <if test="ggxh != '' and ggxh != null">
and ggxh LIKE concat(#{ggxh,jdbcType=VARCHAR},'%') and ggxh LIKE concat(#{ggxh,jdbcType=VARCHAR}, '%')
</if> </if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh!=null"> <if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
and zczbhhzbapzbh LIKE concat(#{zczbhhzbapzbh,jdbcType=VARCHAR},'%') and zczbhhzbapzbh LIKE concat(#{zczbhhzbapzbh,jdbcType=VARCHAR}, '%')
</if> </if>
</where> </where>
</select> </select>
<delete id="deleteHistory" parameterType="Map"> <delete id="deleteHistory" parameterType="Map">
@ -930,7 +971,8 @@
SELECT * SELECT *
from device from device
WHERE deviceRecordKey = #{deviceRecordKey} WHERE deviceRecordKey = #{deviceRecordKey}
ORDER BY versionNumber DESC LIMIT 1 ORDER BY versionNumber DESC
LIMIT 1
</select> </select>
<select id="searchByZxxscpbs" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device"> <select id="searchByZxxscpbs" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
@ -939,7 +981,8 @@
WHERE zxxsdycpbs = #{zxxsdycpbs} WHERE zxxsdycpbs = #{zxxsdycpbs}
ORDER BY versionNumber DESC LIMIT 1 ORDER BY versionNumber DESC
LIMIT 1
</select> </select>
<select id="searchHistory" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device"> <select id="searchHistory" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT * SELECT *
@ -951,7 +994,8 @@
SELECT uuid SELECT uuid
from device from device
WHERE deviceRecordKey = #{deviceRecordKey} WHERE deviceRecordKey = #{deviceRecordKey}
and versionNumber = #{versionNumber} limit 1 and versionNumber = #{versionNumber}
limit 1
</select> </select>
@ -959,13 +1003,15 @@
SELECT * SELECT *
from device from device
WHERE zxxsdycpbs = #{zxxsdycpbs} WHERE zxxsdycpbs = #{zxxsdycpbs}
and versionNumber = #{versionNumber} limit 1 and versionNumber = #{versionNumber}
limit 1
</select> </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
WHERE zxxsdycpbs = #{zxxsdycpbs} limit 1 WHERE zxxsdycpbs = #{zxxsdycpbs}
limit 1
</select> </select>
<select id="findAllByZxxscpbs" resultType="java.lang.String"> <select id="findAllByZxxscpbs" resultType="java.lang.String">
@ -977,23 +1023,29 @@
<select id="findAllByZxxscpbsPage" parameterType="com.glxp.udidl.admin.req.ListPageRequest" <select id="findAllByZxxscpbsPage" parameterType="com.glxp.udidl.admin.req.ListPageRequest"
resultType="java.lang.String"> resultType="java.lang.String">
SELECT uuid SELECT uuid
from device limit #{page},#{limit} from device
limit #{page},#{limit}
</select> </select>
<select id="downloadDevice" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap"> <select id="downloadDevice" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap">
select * select *
from device limit #{page},#{limit} from device
limit #{page},#{limit}
</select> </select>
<update id="updateCplx" parameterType="com.glxp.udidl.admin.entity.udid.Device"> <update id="updateCplx" parameterType="com.glxp.udidl.admin.entity.udid.Device">
UPDATE device UPDATE device
<set> <set>
<if test="hchzsb != null">hchzsb=#{hchzsb},</if> <if test="hchzsb != null">
<if test="cplx != null">cplx=#{cplx},</if> hchzsb=#{hchzsb},
</if>
<if test="cplx != null">
cplx=#{cplx},
</if>
</set> </set>
WHERE devicerecordkey=#{devicerecordkey} WHERE devicerecordkey = #{devicerecordkey}
</update> </update>
<insert id="updateDevice" parameterType="com.glxp.udidl.admin.entity.udid.Device"> <insert id="updateDevice" parameterType="com.glxp.udidl.admin.entity.udid.Device">
@ -1014,8 +1066,7 @@
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 ( values (#{uuid,jdbcType=VARCHAR},
#{uuid,jdbcType=VARCHAR},
#{devicerecordkey,jdbcType=VARCHAR}, #{devicerecordkey,jdbcType=VARCHAR},
#{btcpbs,jdbcType=VARCHAR}, #{btcpbs,jdbcType=VARCHAR},
#{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR}, #{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR},
@ -1065,8 +1116,14 @@
#{lastModifyTime,jdbcType=VARCHAR}, #{lastModifyTime,jdbcType=VARCHAR},
#{requestDate}, #{requestDate},
#{hchzsb}, #{hchzsb},
#{cplx} #{cplx})
)
</insert> </insert>
<select id="selectNew" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT a.deviceRecordKey,a.versionNumber FROM
( SELECT deviceRecordKey, max( lastModifyTime ) modifyTime,versionNumber FROM device GROUP BY deviceRecordKey ) a
JOIN device b ON a.deviceRecordKey = b.deviceRecordKey AND a.modifyTime = b.lastModifyTime
</select>
</mapper> </mapper>

Loading…
Cancel
Save