国家库同步下载,无法下载其他子级问题

zhairh
anthonywj 2 years ago
parent b2c98431c2
commit e941d115d1

@ -2,6 +2,7 @@ package com.glxp.udidl.admin.controller.device;
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.constant.Constant;
import com.glxp.udidl.admin.dao.udi.ProductInfoMapper;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
@ -11,13 +12,14 @@ import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.service.dataSync.DeviceSyncService;
import com.glxp.udidl.admin.service.dataSync.UdplatDownloadService;
import com.glxp.udidl.admin.service.dataSync.UdplatSyncService;
import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
import com.glxp.udidl.admin.service.dataSync.*;
import com.glxp.udidl.admin.service.inout.DeviceService;
import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.thread.UdiTransferUtils;
import com.glxp.udidl.admin.util.RedisUtil;
import com.glxp.udidl.admin.util.ResultVOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -29,6 +31,7 @@ import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@ -169,4 +172,40 @@ public class TestController {
return ResultVOUtils.error(500, "未查询到数据");
}
@Resource
private DeviceDownloadService deviceDownloadService;
@Resource
private DeviceSaveService deviceSaveService;
@Resource
RedisUtil redisUtil;
@GetMapping("udidl/device/updateDi")
public BaseResponse updateDi(ListPageRequest listPageRequest) {
List<String> keys = productInfoDao.findAllNameCodes(listPageRequest);
int index = listPageRequest.getPage();
for (String key : keys) {
index++;
if (key.length() != 14)
continue;
DataSetSingleResult res = null;
try {
Thread.sleep(5 * 1000);
res = deviceDownloadService.downloadByDi(key);
if (res.getReturnCode() != 1) {
return ResultVOUtils.error(-1, res.getReturnMsg());
}
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(res.getDataSet());
int insertCount = deviceSaveService.DeviceSave(dataSets, new Date(), Constant.DL_TYPE_UPDATE);
} catch (Exception e) {
e.printStackTrace();
redisUtil.set("updateDLLastCount", index + "");
return ResultVOUtils.error(500, res.getReturnMsg());
}
redisUtil.set("updateDLLastCount", index + "");
logger.info(listPageRequest.getPage() + "---" + listPageRequest.getLimit() + "----" + index);
}
return ResultVOUtils.success("总数=" + keys.size() + "\n");
}
}

@ -37,6 +37,9 @@ public interface ProductInfoMapper extends BaseMapper<ProductInfoEntity> {
List<String> findAllUuids(ListPageRequest listPageRequest);
List<String> findAllNameCodes(ListPageRequest listPageRequest);
List<ProductInfoEntity> selectByUuid(@Param("uuid") String uuid);
List<ProductInfoEntity> filterUdi(ProductInfoFilterRequest productInfoFilterRequest);

@ -47,140 +47,140 @@ public class DeviceSaveService {
List<DataSetResult.ClinicalInfo> ClinicalInfoAll = ds.getClinicalInfo();
List<DataSetResult.StorageInfo> storageInfoAll = ds.getStorageInfo();
List<DataSetResult.PackingInfo> packingInfoAll = ds.getPackingInfo();
if (ds.getDeviceInfo() != null)
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
//1:判断数据是否存在
String uuid = null;
Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
if (dlType == Constant.DL_TYPE_ADD) {
if (originDevice != null)
continue;
}
//1:判断数据是否存在
String uuid = null;
Device originDevice = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
if (dlType == Constant.DL_TYPE_ADD) {
if (originDevice != null)
continue;
}
//2,存储 deviceInfo
Device device = responseToDevice(item);
Boolean isHistory = false;
if (item.getDeviceHistoryKey() != null && !item.getDeviceHistoryKey().isEmpty()) {
isHistory = true;
}
//2,存储 deviceInfo
Device device = responseToDevice(item);
Boolean isHistory = false;
if (item.getDeviceHistoryKey() != null && !item.getDeviceHistoryKey().isEmpty()) {
isHistory = true;
}
if (requestDate != null)
device.setRequestDate(requestDate);
if (requestDate != null)
device.setRequestDate(requestDate);
//2.1 判断更新或者新增
if (dlType == Constant.DL_TYPE_ADD || originDevice == null) {
uuid = getUUId();
device.setUuid(uuid);
deviceService.insertDevice(device);
} else {
//2.2 判断字段是否与原来的一致,若不一致则更新
if (!device.equals(originDevice)) {
uuid = originDevice.getUuid();
//2.1 判断更新或者新增
if (dlType == Constant.DL_TYPE_ADD || originDevice == null) {
uuid = getUUId();
device.setUuid(uuid);
deviceService.updateDevice(device);
} else { //,若一致则跳过
deviceService.insertDevice(device);
} else {
//2.2 判断字段是否与原来的一致,若不一致则更新
if (!device.equals(originDevice)) {
uuid = originDevice.getUuid();
device.setUuid(uuid);
deviceService.updateDevice(device);
} else { //,若一致则跳过
// uuid = getUUId();
// device.setUuid(uuid);
// deviceService.insertDevice(device);
continue;
}
}
result++;
//3,存储ContactList
List<DataSetResult.ContactInfo> contactInfos = item.getContactList();
if (contactInfos != null && contactInfos.size() > 0) {
List<Contactlist> contactlistList = new ArrayList<>();
for (DataSetResult.ContactInfo contactInfo : contactInfos) {
Contactlist contactlist = responseToContactlist(contactInfo);
contactlist.setDevicerecordkey(device.getDevicerecordkey());
contactlist.setUuid(uuid);
contactlistList.add(contactlist);
continue;
}
}
deviceService.deleteClinicalByUuid(uuid);
deviceService.insertContactlist(contactlistList);
}
//4,存储 Deviceclinical
if (ClinicalInfoAll != null && ClinicalInfoAll.size() > 0) {
List<DataSetResult.ClinicalInfo> deviceclinicals;
if (isHistory == true)
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
List<Deviceclinical> deviceclinicalList = new ArrayList<>();
if (deviceclinicals != null && deviceclinicals.size() > 0) {
for (DataSetResult.ClinicalInfo deviceClinical : deviceclinicals) {
Deviceclinical deviceclinical = responseToDeviceclinical(deviceClinical);
if (isHistory == true)
deviceclinical.setDevicerecordkey(item.getDeviceHistoryKey());
else
deviceclinical.setDevicerecordkey(device.getDevicerecordkey());
deviceclinical.setUuid(uuid);
deviceclinicalList.add(deviceclinical);
result++;
//3,存储ContactList
List<DataSetResult.ContactInfo> contactInfos = item.getContactList();
if (contactInfos != null && contactInfos.size() > 0) {
List<Contactlist> contactlistList = new ArrayList<>();
for (DataSetResult.ContactInfo contactInfo : contactInfos) {
Contactlist contactlist = responseToContactlist(contactInfo);
contactlist.setDevicerecordkey(device.getDevicerecordkey());
contactlist.setUuid(uuid);
contactlistList.add(contactlist);
}
deviceService.deleteClinicalByUuid(uuid);
deviceService.insertDeviceClinical(deviceclinicalList);
deviceService.insertContactlist(contactlistList);
}
}
//5 存储 Devicestorage
if (storageInfoAll != null && storageInfoAll.size() > 0) {
List<DataSetResult.StorageInfo> storageInfos;
if (isHistory == true)
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
if (storageInfos != null && storageInfos.size() > 0) {
List<Devicestorage> devicestorageList = new ArrayList<>();
for (DataSetResult.StorageInfo storageInfo : storageInfos) {
Devicestorage devicestorage = responseToDevicestorage(storageInfo);
if (isHistory == true)
devicestorage.setDevicerecordkey(item.getDeviceHistoryKey());
else
devicestorage.setDevicerecordkey(device.getDevicerecordkey());
devicestorage.setUuid(uuid);
devicestorageList.add(devicestorage);
//4,存储 Deviceclinical
if (ClinicalInfoAll != null && ClinicalInfoAll.size() > 0) {
List<DataSetResult.ClinicalInfo> deviceclinicals;
if (isHistory == true)
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
deviceclinicals = ClinicalInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
List<Deviceclinical> deviceclinicalList = new ArrayList<>();
if (deviceclinicals != null && deviceclinicals.size() > 0) {
for (DataSetResult.ClinicalInfo deviceClinical : deviceclinicals) {
Deviceclinical deviceclinical = responseToDeviceclinical(deviceClinical);
if (isHistory == true)
deviceclinical.setDevicerecordkey(item.getDeviceHistoryKey());
else
deviceclinical.setDevicerecordkey(device.getDevicerecordkey());
deviceclinical.setUuid(uuid);
deviceclinicalList.add(deviceclinical);
}
deviceService.deleteClinicalByUuid(uuid);
deviceService.insertDeviceClinical(deviceclinicalList);
}
deviceService.deleteStorageByUuid(uuid);
deviceService.insertDevicestorage(devicestorageList);
}
}
//5 存储 Devicestorage
if (storageInfoAll != null && storageInfoAll.size() > 0) {
List<DataSetResult.StorageInfo> storageInfos;
if (isHistory == true)
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
if (storageInfos != null && storageInfos.size() > 0) {
List<Devicestorage> devicestorageList = new ArrayList<>();
for (DataSetResult.StorageInfo storageInfo : storageInfos) {
Devicestorage devicestorage = responseToDevicestorage(storageInfo);
if (isHistory == true)
devicestorage.setDevicerecordkey(item.getDeviceHistoryKey());
else
devicestorage.setDevicerecordkey(device.getDevicerecordkey());
devicestorage.setUuid(uuid);
devicestorageList.add(devicestorage);
}
deviceService.deleteStorageByUuid(uuid);
deviceService.insertDevicestorage(devicestorageList);
}
//6 存储Devicepackage
if (packingInfoAll != null && packingInfoAll.size() > 0) {
List<DataSetResult.PackingInfo> packingInfos;
if (isHistory == true)
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
if (packingInfos != null && packingInfos.size() > 0) {
List<Devicepackage> devicepackageList = new ArrayList<>();
for (DataSetResult.PackingInfo packingInfo : packingInfos) {
Devicepackage devicepackage = responseToDevicepackage(packingInfo);
if (isHistory == true)
devicepackage.setDevicerecordkey(item.getDeviceHistoryKey());
else
devicepackage.setDevicerecordkey(device.getDevicerecordkey());
devicepackage.setUuid(uuid);
devicepackageList.add(devicepackage);
}
//6 存储Devicepackage
if (packingInfoAll != null && packingInfoAll.size() > 0) {
List<DataSetResult.PackingInfo> packingInfos;
if (isHistory == true)
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
packingInfos = packingInfoAll.stream().filter(p -> p.getDeviceRecordKey().equals(item.getDeviceRecordKey())).
collect(Collectors.toList());
if (packingInfos != null && packingInfos.size() > 0) {
List<Devicepackage> devicepackageList = new ArrayList<>();
for (DataSetResult.PackingInfo packingInfo : packingInfos) {
Devicepackage devicepackage = responseToDevicepackage(packingInfo);
if (isHistory == true)
devicepackage.setDevicerecordkey(item.getDeviceHistoryKey());
else
devicepackage.setDevicerecordkey(device.getDevicerecordkey());
devicepackage.setUuid(uuid);
devicepackageList.add(devicepackage);
}
deviceService.deletePakcageByUuid(uuid);
deviceService.insertDevicepackage(devicepackageList);
}
deviceService.deletePakcageByUuid(uuid);
deviceService.insertDevicepackage(devicepackageList);
}
//7存储productInfo信息
productInfoSave(uuid);
}
//7存储productInfo信息
productInfoSave(uuid);
}
}
return result;
}

@ -25,6 +25,7 @@ import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import javax.annotation.Resource;
import javax.servlet.http.PushBuilder;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@ -159,9 +160,7 @@ public class DeviceSyncService {
}
public BaseResponse searchDlByDi(String deviceId) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(deviceId);
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
List<ProductInfoEntity> productInfoEntityList = searchByDI(deviceId);
if (CollUtil.isEmpty(productInfoEntityList)) {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1)
@ -171,7 +170,7 @@ public class DeviceSyncService {
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date(), Constant.DL_TYPE_UPDATE);
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
productInfoEntityList = searchByDI(deviceId);
} else {
return ResultVOUtils.error(501, "医疗器械唯一标识数据库未找到此产品DI,请检查是否输入正确或联系厂家是否已上传");
}
@ -180,6 +179,20 @@ public class DeviceSyncService {
return ResultVOUtils.success(productInfoEntityList);
}
public List<ProductInfoEntity> searchByDI(String deviceId) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(deviceId);
productInfoFilterRequest.setIsNewest(1);
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
if (CollUtil.isNotEmpty(productInfoEntityList)) {
ProductInfoFilterRequest request = new ProductInfoFilterRequest();
request.setUuid(productInfoEntityList.get(0).getUuid());
productInfoEntityList = productInfoService.findAll(request);
}
return productInfoEntityList;
}
public BaseResponse searchDlByUuid(String uuid) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setUuid(uuid);

@ -98,7 +98,7 @@
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select *
from productinfo where
uuid in (
uuid in (
<foreach collection="ids" item="item" index="index"
separator=",">
#{item}
@ -116,7 +116,8 @@
<!-- CHAR_LENGTH(nameCode) <![CDATA[ >= ]]> 14-->
<select id="filterUdiByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select * from productinfo
select *
from productinfo
<where>
<if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm}
@ -166,9 +167,9 @@
<select id="filterUuidByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="java.lang.String">
select p.uuid from productinfo p
INNER JOIN
(select deviceRecordKey, max(versionNumber) versionNumber
from productinfo
INNER JOIN
(select deviceRecordKey, max(versionNumber) versionNumber
from productinfo
<where>
<if test="tyshxydm != '' and tyshxydm != null">
@ -185,8 +186,8 @@
</if>
</where>
GROUP BY deviceRecordKey)
a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber
group by uuid
a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber
group by uuid
</select>
<select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
@ -377,65 +378,64 @@
<insert id="insertProductInfo" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
REPLACE
INTO productinfo
INTO productinfo
(nameCode, packRatio, packLevel, bhxjsl,
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, thirdProductNo, addType, deviceRecordKey, isUseDy,
thirdProductName,
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
versionNumber
, diType, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq,
ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx,sfwblztlcp,cgzmraqxgxx,sfbjwycxsy,zdcfsycs,
sfwwjbz,syqsfxyjxmj,mjfs,qtxxdwzlj,categoryName)
values (
#{nameCode},
#{packRatio},
#{packLevel},
#{bhxjsl},
#{bhzxxsbzsl},
#{zxxsbzbhsydysl},
#{bhxjcpbm},
#{bzcj},
#{thirdProductNo},
#{addType},
#{deviceRecordKey},
#{isUseDy},
#{thirdProductName},
#{cpmctymc},
#{cplb},
#{flbm},
#{ggxh},
#{qxlb},
#{tyshxydm},
#{ylqxzcrbarmc},
#{zczbhhzbapzbh},
#{ylqxzcrbarywmc},
#{uuid},
#{sjcpbm},
#{versionNumber},
#{diType},
#{scbssfbhph},
#{scbssfbhxlh},
#{scbssfbhscrq},
#{scbssfbhsxrq},
#{ybbm},
#{spmc},
#{cphhhbh},
#{cpms},
#{cpbsbmtxmc},
#{isNewest},
#{updateTime},
#{hchzsb},
#{cplx},
#{sfwblztlcp},
#{cgzmraqxgxx},
#{sfbjwycxsy},
#{zdcfsycs},
#{sfwwjbz},
#{syqsfxyjxmj},
#{mjfs},
#{qtxxdwzlj},
#{categoryName}
)
ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx, sfwblztlcp, cgzmraqxgxx,
sfbjwycxsy, zdcfsycs,
sfwwjbz, syqsfxyjxmj, mjfs, qtxxdwzlj, categoryName)
values (#{nameCode},
#{packRatio},
#{packLevel},
#{bhxjsl},
#{bhzxxsbzsl},
#{zxxsbzbhsydysl},
#{bhxjcpbm},
#{bzcj},
#{thirdProductNo},
#{addType},
#{deviceRecordKey},
#{isUseDy},
#{thirdProductName},
#{cpmctymc},
#{cplb},
#{flbm},
#{ggxh},
#{qxlb},
#{tyshxydm},
#{ylqxzcrbarmc},
#{zczbhhzbapzbh},
#{ylqxzcrbarywmc},
#{uuid},
#{sjcpbm},
#{versionNumber},
#{diType},
#{scbssfbhph},
#{scbssfbhxlh},
#{scbssfbhscrq},
#{scbssfbhsxrq},
#{ybbm},
#{spmc},
#{cphhhbh},
#{cpms},
#{cpbsbmtxmc},
#{isNewest},
#{updateTime},
#{hchzsb},
#{cplx},
#{sfwblztlcp},
#{cgzmraqxgxx},
#{sfbjwycxsy},
#{zdcfsycs},
#{sfwwjbz},
#{syqsfxyjxmj},
#{mjfs},
#{qtxxdwzlj},
#{categoryName})
</insert>
<delete id="deleteById" parameterType="Map">
@ -569,7 +569,6 @@
<if test="categoryName != null">
categoryName=#{categoryName},
</if>
</set>
WHERE id = #{id}
</update>
@ -643,8 +642,6 @@
<if test="categoryName != null">
categoryName=#{categoryName},
</if>
</set>
WHERE uuid = #{uuid}
</update>
@ -655,8 +652,17 @@
SELECT uuid
from device
group by uuid
limit #{page}, #{limit}
limit #{page}, #{limit}
</select>
<select id="findAllNameCodes" parameterType="com.glxp.udidl.admin.req.ListPageRequest"
resultType="java.lang.String">
SELECT nameCode
from productinfo
group by nameCode
limit #{page}, #{limit}
</select>
<select id="findAllTyshxyh" resultType="java.lang.String">
SELECT tyshxydm
from productinfo
@ -686,16 +692,17 @@
<insert id="updateProductInfoData" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
REPLACE
INTO productinfo
(id, nameCode, packRatio, packLevel, bhxjsl,
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, thirdProductNo, addType, deviceRecordKey, isUseDy,
thirdProductName,
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
versionNumber
, diType, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq,
ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx, sfwblztlcp, cgzmraqxgxx, sfbjwycxsy,
zdcfsycs,
sfwwjbz, syqsfxyjxmj, mjfs, qtxxdwzlj, categoryName)
INTO productinfo
(id, nameCode, packRatio, packLevel, bhxjsl,
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, thirdProductNo, addType, deviceRecordKey, isUseDy,
thirdProductName,
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
versionNumber
, diType, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq,
ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx, sfwblztlcp, cgzmraqxgxx,
sfbjwycxsy,
zdcfsycs,
sfwwjbz, syqsfxyjxmj, mjfs, qtxxdwzlj, categoryName)
values (#{id},
#{nameCode},
#{packRatio},

Loading…
Cancel
Save