同步库bug修复

master
anthonyywj2 3 years ago
parent e705cbecdb
commit 644d4ba97e

@ -184,8 +184,33 @@ public class DownloadDeviceHelper {
return result;
}
public int simpleDownloadDevices(ProductInfoService productInfoService, DeviceService deviceService, DeviceRequest deviceRequest) {
String response = HttpClient.post(url, deviceRequest);
int result = -1;
List<DataSetBean> dataSetBeanList = null;
MedicalResonse medicalResonse = null;
if (url.equals("sharing/get")) {
medicalResonse = (MedicalResonse) JSONObject.parseObject(response, MedicalResonse.class);
result = medicalResonse.getReturnCode();
dataSetBeanList = medicalResonse.getDataSet();
}
if (dataSetBeanList != null && dataSetBeanList.size() > 0) {
for (int i = 0; i < dataSetBeanList.size(); i++) {
DataSetBean dataSetBean = dataSetBeanList.get(i);
Device device = WarehousBeanUtils.responseToDevice(dataSetBean);
}
}
if (Integer.parseInt(deviceRequest.getCurrentPageNumber()) >= medicalResonse.getTotalPageCount()) {
return -1;
}
return result;
}
//下载生产企业
public int downloadProduct(ProductInfoService productInfoService, DeviceService deviceService, DeviceRequest deviceRequest) {
public int downloadProduct(ProductInfoService productInfoService, DeviceService deviceService, DeviceRequest
deviceRequest) {
String response = HttpClient.post(url, deviceRequest);
MedicalHistoryResonse medicalResonse = (MedicalHistoryResonse) JSONObject.parseObject(response, MedicalHistoryResonse.class);
if (medicalResonse.getReturnCode() == 1) {
@ -272,7 +297,8 @@ public class DownloadDeviceHelper {
}
public int downloadHistory(ProductInfoService productInfoService, DownloadHistoryRequest deviceHistoryRequest, DeviceService deviceService) {
public int downloadHistory(ProductInfoService productInfoService, DownloadHistoryRequest
deviceHistoryRequest, DeviceService deviceService) {
String response = HttpClient.post("sharing/history/get", deviceHistoryRequest);
MedicalHistoryResonse medicalResonse = (MedicalHistoryResonse) JSONObject.parseObject(response, MedicalHistoryResonse.class);
if (medicalResonse.getReturnCode() == 1) {
@ -339,7 +365,8 @@ public class DownloadDeviceHelper {
return 1;
}
public int downloadBydi(DownloadDiRequest downloadDiRequest, DeviceService deviceService, ProductInfoService productInfoService) {
public int downloadBydi(DownloadDiRequest downloadDiRequest, DeviceService deviceService, ProductInfoService
productInfoService) {
String response = HttpClient.post("sharing/single", downloadDiRequest);
MedicalSingleResponse medicalResonse = (MedicalSingleResponse) JSONObject.parseObject(response, MedicalSingleResponse.class);
if (medicalResonse.getReturnCode() == 1) {

@ -3,11 +3,15 @@ package com.glxp.udidl.admin.controller.device;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.UdiEntity;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.res.udid.ProductInfoResponse;
import com.glxp.udidl.admin.service.DataSync.DeviceDownloadService;
import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.thread.AsyncDownloadTask;
import com.glxp.udidl.admin.util.FilterUdiUtils;
import com.glxp.udidl.common.res.BaseResponse;
@ -27,6 +31,8 @@ public class ProductInfoController {
@Resource
ProductInfoService productInfoService;
@Resource
UdiCompanyService udiCompanyService;
@Resource
AsyncDownloadTask asyncDownloadTask;
@ -123,6 +129,16 @@ public class ProductInfoController {
}
//出入库同步下载
@AuthRuleAnnotation("udidl_company_all")
@GetMapping("udidl/udiwms/syncCompany")
public BaseResponse syncCompany(UdiCompanyRequest udiCompanyRequest) {
List<UdiCompanyEntity> udiCompanyEntities = udiCompanyService.syncDlCompany(udiCompanyRequest);
return ResultVOUtils.success(udiCompanyEntities);
}
//开放查询 查询只查询主DI
@AuthRuleAnnotation("udidl_productInfo_all")
@ -163,9 +179,9 @@ public class ProductInfoController {
}
}
if (productInfoFilterRequest.getCpmctymc() != null && !productInfoFilterRequest.getCpmctymc().equals("") && productInfoFilterRequest.getCpmctymc().length() < 4) {
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
}
// if (productInfoFilterRequest.getCpmctymc() != null && !productInfoFilterRequest.getCpmctymc().equals("")) {
// return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
// }
productInfoFilterRequest.setIsNewest(1);
productInfoFilterRequest.setDiType("1");
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);

@ -49,6 +49,7 @@ public class TestController {
UdplatDownloadService udplatDownloadService;
@Autowired
UdplatSyncService udplatSyncService;
@GetMapping("udidl/device/transfer")
public void transfer() {
List<String> keys = deviceService.findAllByZxxscpbs();
@ -102,36 +103,51 @@ public class TestController {
logger.info(month + "---按月开启下载");
asyncDownloadTask.downloadByMonth(month, page);
}
@GetMapping("udidl/device/dlBymonthTest")
public void dlBymonthTest(String month, int page) {
logger.info(month + "---按月开启下载");
asyncDownloadTask.downloadByMonthTest(month, page);
}
@GetMapping("/test/getDistributor")
public String udplatTest(){
return udplatDownloadService.getDistributor();
public String udplatTest() {
return udplatDownloadService.getDistributor();
}
@GetMapping("/test/getManufactures")
public BaseResponse getManufactures(){
return udplatDownloadService.getAllManufactures();
public BaseResponse getManufactures() {
return udplatDownloadService.getAllManufactures();
}
@GetMapping("/test/udplat")
public BaseResponse udplatSync(){
udplatSyncService.downloadAndSave("manual","");
return ResultVOUtils.success("后台已开始下载!");
public BaseResponse udplatSync() {
udplatSyncService.downloadAndSave("manual", "");
return ResultVOUtils.success("后台已开始下载!");
}
@GetMapping("/test/udplatGoods")
/* public UdplatResponse getGoods(){
return udplatDownloadService.getUdplatGoods(1,1000,null,null);
}*/
public ResponseEntity<String> getGoods(){
return udplatDownloadService.getUdplatGoods(1,100);
public ResponseEntity<String> getGoods() {
return udplatDownloadService.getUdplatGoods(1, 100);
}
@GetMapping("/test/getPurchaseOrders")
public ResponseEntity<String> getPurchaseOrders(String orderCode){
public ResponseEntity<String> getPurchaseOrders(String orderCode) {
return udplatDownloadService.getPurchaseOrders(orderCode);
}
@GetMapping("/test/getPurchaseOrderDetals")
public ResponseEntity<String> getPurchaseOrderDetals(Long orderId){
public ResponseEntity<String> getPurchaseOrderDetals(Long orderId) {
return udplatDownloadService.getPurchaseOrderDetals(orderId);
}
@GetMapping("/test/getDistributeOrderDetails")
public JSONObject getDistributeOrderDetails(Long orderId){
public JSONObject getDistributeOrderDetails(Long orderId) {
return udplatDownloadService.getDistributeOrderDetails(orderId);
}
}

@ -27,20 +27,29 @@ public class UdidlDeviceController {
deviceSyncService.downloadUdi(startDate, endDate);
return ResultVOUtils.success("后台已开始下载!");
}
@AuthRuleAnnotation("udidl_udidlDevice_all")
@GetMapping("udidl/device/dlByDay")
public BaseResponse dlByDay(String day) {
logger.info(day + "---按天开启下载");
deviceSyncService.downloadUdi(day,"manual");
deviceSyncService.downloadUdi(day, "manual");
//asyncDownloadTask.downloadByDay(day);
return ResultVOUtils.success("后台已开始下载!");
}
@AuthRuleAnnotation("udidl_udidlDevice_all")
@PostMapping("udidl/device/dlByDi")
public BaseResponse downloadByDi(String deviceId) {
return deviceSyncService.downloadByDi(deviceId);
}
@AuthRuleAnnotation("udidl_udidlDevice_all")
@GetMapping("udidl/device/serchDlByDi")
public BaseResponse serchDlByDi(String deviceId) {
return deviceSyncService.searchDlByDi(deviceId);
}
/**
*
*
@ -52,6 +61,7 @@ public class UdidlDeviceController {
public BaseResponse downloadSingle(String deviceId) {
return deviceSyncService.downloadSingle(deviceId);
}
@AuthRuleAnnotation("udidl_udidlDevice_all")
@PostMapping("udidl/device/downloadHistory")
public BaseResponse downloadHistory(String key) {

@ -2,6 +2,7 @@ package com.glxp.udidl.admin.dao.udi;
import com.glxp.udidl.admin.dto.device.ProductDetailModel;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udid.Device;
import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import org.apache.ibatis.annotations.Mapper;
@ -21,7 +22,9 @@ public interface ProductInfoDao {
List<ProductInfoEntity> filterUdiByCreditNo(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> filterUdiByNewest(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> selectByUpdateTime(@Param("startDate") String startDate,@Param("endDate") String endDate);//按更新时间查询
List<ProductInfoEntity> selectByUpdateTime(@Param("startDate") String startDate, @Param("endDate") String endDate);//按更新时间查询
boolean insertProductInfo(ProductInfoEntity productInfoEntity);
boolean deleteById(@Param("id") String id);
@ -45,5 +48,9 @@ public interface ProductInfoDao {
List<ProductInfoEntity> selectAllByUuid(@Param("ids") List<String> ids);
List<String> findAllTyshxyh();
List<ProductDetailModel> selectByDeviceRecordKey(String key);
boolean updateCplx(ProductInfoEntity productInfoEntity);
}

@ -26,6 +26,10 @@ public interface UdiCompanyDao {
boolean deleteAll(@Param("ids") List<String> ids);
boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity);
List<String> searchByName(String name);//公司名称搜索
List<UdiCompanyEntity> syncDlCompany(UdiCompanyRequest udiCompanyRequest);
}

@ -60,4 +60,6 @@ public interface DeviceMapper {
List<String> findAllByZxxscpbs();
List<String> findAllByZxxscpbsPage(ListPageRequest listPageRequest);
boolean updateCplx(Device device);
}

@ -52,6 +52,10 @@ public class ProductInfoEntity {
private String expireDate;
private Boolean isNewest;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date updateTime;
private String hchzsb;
private String cplx;
}

@ -99,6 +99,25 @@ public class Device {
private String lastModifyTime;
private Date requestDate;
private String hchzsb;
private String cplx;
public String getHchzsb() {
return hchzsb;
}
public void setHchzsb(String hchzsb) {
this.hchzsb = hchzsb;
}
public String getCplx() {
return cplx;
}
public void setCplx(String cplx) {
this.cplx = cplx;
}
public Date getRequestDate() {
return requestDate;
}

@ -146,10 +146,13 @@ public class DeviceEntity {
private String bssjzt;
private boolean check;
private String hchzsb;
private String cplx;
private List<Contactlist> contactlistList;
private List<Deviceclinical> deviceclinicals;
private List<Devicepackage> devicepackages;
private List<Devicestorage> devicestorages;
private List<DeviceHistory> deviceHistories;
private List<DeviceHistory> deviceHistories;
}

@ -10,5 +10,6 @@ public class UdiCompanyRequest extends ListPageRequest {
private String provinceCode;
private String cityCode;
private String areaCode;
private String updateTime;
}

@ -92,6 +92,8 @@ public class DataSetBean {
private String ylqxzcrbarywmc;
private String zxxsdyzsydydsl;
private String tsrq;
private String hchzsb;
private String cplx;
private String bszt;
private String sfyzcbayz;
@ -102,6 +104,23 @@ public class DataSetBean {
private List<DeviceStorageBean> deviceStorage;
private List<ContactListBean> contactList;
public String getHchzsb() {
return hchzsb;
}
public void setHchzsb(String hchzsb) {
this.hchzsb = hchzsb;
}
public String getCplx() {
return cplx;
}
public void setCplx(String cplx) {
this.cplx = cplx;
}
public String getDeviceHistoryRecordKey() {
return deviceHistoryRecordKey;
}

@ -12,18 +12,20 @@ public class DataSetResult {
private int totalPageCount; //总页数
private int totalRecordCount; //总记录数量
private DataSet dataSet;
@Data
public static class DataSet{
public static class DataSet {
private List<DeviceInfo> deviceInfo;
private List<ClinicalInfo> clinicalInfo;
private List<StorageInfo> storageInfo;
private List<PackingInfo> packingInfo;
}
/**
*
*/
@Data
public static class DeviceInfo{
public static class DeviceInfo {
private String deviceHistoryKey;
private String deviceRecordKey;
private int versionNumber;
@ -73,25 +75,28 @@ public class DataSetResult {
private String bssjzt; //"标识数据状态
//文档有,接口返回无该字段
private String cplx; //"产品类型1 器械2 体外诊断试剂
private String HCHZSB; //耗材或者设备:0 耗材, 1 设备
private String hchzsb; //耗材或者设备:0 耗材, 1 设备
private List<ContactInfo> contactList;
}
@Data
public static class ContactInfo{
public static class ContactInfo {
private String qylxryx; //企业联系人邮箱 1
private String qylxrdh; //企业联系人电话
private String qylxrcz; //企业联系人传真
}
@Data
public static class ClinicalInfo{
public static class ClinicalInfo {
private String deviceHistoryKey;//历史key
private String deviceRecordKey; // 数据库记录 key
private String lcsycclx; //尺寸类型
private String ccz; //尺寸值
private String ccdw; //计量单位
}
@Data
public static class StorageInfo{
public static class StorageInfo {
private String deviceHistoryKey;//历史key
private String deviceRecordKey; // 数据库记录 key
private String cchcztj; // 储存或操作条件
@ -99,8 +104,9 @@ public class DataSetResult {
private String zgz; //最高值
private String jldw; //计量单位
}
@Data
public static class PackingInfo{
public static class PackingInfo {
private String deviceHistoryKey;//历史key
private String deviceRecordKey; // 数据库记录 key
private String bzcpbs; //包装产品标识

@ -4,6 +4,8 @@ package com.glxp.udidl.admin.service.DataSync;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.entity.info.CompanyEntity;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udid.Device;
import com.glxp.udidl.admin.entity.udid.JobLog;
import com.glxp.udidl.admin.entity.udid.TokenEntity;
import com.glxp.udidl.admin.req.udid.DeviceRequest;
@ -15,6 +17,8 @@ import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
import com.glxp.udidl.admin.res.udid.DataSetTotalResult;
import com.glxp.udidl.admin.service.info.CompanyService;
import com.glxp.udidl.admin.service.inout.DeviceService;
import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.JobLogService;
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
import com.glxp.udidl.admin.util.DateUtil;
@ -49,6 +53,10 @@ public class DeviceDownloadService {
JobLogService jobLogService; //日志
@Autowired
DeviceSaveService deviceSaveService;
@Autowired
private DeviceService deviceService;
@Autowired
private ProductInfoService productInfoService;
/*public DeviceDownloadService() {
companyEntity = companyService.findCompany();
@ -145,9 +153,9 @@ public class DeviceDownloadService {
int page = 1;
//int totalPage = 1;
int totalRecordCount = 0;
boolean hasData=true;//是否还有数据,如无退出
boolean hasData = true;//是否还有数据,如无退出
List<DataSetResult.DataSet> dataSets = new ArrayList<DataSetResult.DataSet>();
while (hasData == true){
while (hasData == true) {
DataSetResult dataSetResult = getData(rangeValue, requestType, page);
if (dataSetResult.getReturnCode() != 1 && reCount == 0) {
token = "";
@ -161,11 +169,10 @@ public class DeviceDownloadService {
results.setMsg(msg);
return results;//发生错误 退出
} else {
if (dataSetResult.getDataSet().getDeviceInfo() != null && dataSetResult.getDataSet().getDeviceInfo().size() > 0)
{
if (dataSetResult.getDataSet().getDeviceInfo() != null && dataSetResult.getDataSet().getDeviceInfo().size() > 0) {
dataSets.add(dataSetResult.getDataSet());
totalRecordCount = dataSetResult.getTotalRecordCount();
}else { //获取不到数据,退出循环
} else { //获取不到数据,退出循环
hasData = false;
break;
}
@ -250,8 +257,8 @@ public class DeviceDownloadService {
List<DataSetResult.DataSet> data = result.getData();
data.addAll(res.getData());
result.setData(data);
System.out.println("历史记录:"+res.getTotalRecordCount()+","+ res.realRecordCount());
System.out.println("总记录:"+result.getTotalRecordCount()+","+ result.realRecordCount());
System.out.println("历史记录:" + res.getTotalRecordCount() + "," + res.realRecordCount());
System.out.println("总记录:" + result.getTotalRecordCount() + "," + result.realRecordCount());
}
} else {
JobLog jobLog = new JobLog();
@ -282,8 +289,8 @@ public class DeviceDownloadService {
if (res.getCode() != 1)
return res;
if (res.getData() != null && res.getData().size() > 0) {
if( res.getTotalRecordCount() != res.realRecordCount())
System.out.println("行数不一致:"+res.getTotalRecordCount() +","+res.realRecordCount());
if (res.getTotalRecordCount() != res.realRecordCount())
System.out.println("行数不一致:" + res.getTotalRecordCount() + "," + res.realRecordCount());
result.setTotalRecordCount(result.getTotalRecordCount() + res.getTotalRecordCount());
List<DataSetResult.DataSet> dataList = result.getData();
dataList.addAll(res.getData());
@ -317,7 +324,7 @@ public class DeviceDownloadService {
deviceHistoryRequest.setDataSet(dataSetBeans);
List<DataSetResult.DataSet> dataSets = new ArrayList<DataSetResult.DataSet>();
boolean hasData = true;
while (hasData ==true){
while (hasData == true) {
deviceHistoryRequest.setCurrentPageNumber(page + "");
String response = "";
try {
@ -350,11 +357,10 @@ public class DeviceDownloadService {
dataSets.add(dataSetResult.getDataList());
totalRecordCount = totalRecordCount+dataSetResult.getTotalRecordCount();
}else*/
if (dataSetResult.getDataSet().getDeviceInfo() != null && dataSetResult.getDataSet().getDeviceInfo().size() > 0){
if (dataSetResult.getDataSet().getDeviceInfo() != null && dataSetResult.getDataSet().getDeviceInfo().size() > 0) {
dataSets.add(dataSetResult.getDataSet());
totalRecordCount = totalRecordCount+dataSetResult.getTotalRecordCount();
}else
{
totalRecordCount = totalRecordCount + dataSetResult.getTotalRecordCount();
} else {
hasData = false;
break;
}
@ -485,7 +491,7 @@ public class DeviceDownloadService {
//存储数据
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(dataSetResult.getDataSet());
deviceSaveService.DeviceSave(dataSets,null);
deviceSaveService.DeviceSave(dataSets, null);
}
totalPage = dataSetResult.getTotalPageCount();
totalRecordCount = dataSetResult.getTotalRecordCount();
@ -511,4 +517,71 @@ public class DeviceDownloadService {
return ResultVOUtils.success();
}
//按月份下载 边下载边保存
public BaseResponse downloadByMonthTest(String month, int page) {
try {
int totalPage = page;
int totalRecordCount = 0;
while (page <= totalPage) {
DataSetResult dataSetResult = getData(month, 2, page);
if (dataSetResult.getReturnCode() != 1) {
String msg = "下载到第" + page + "页发生错误";
//发生错误,存储日志
JobLog jobLog = new JobLog();
jobLog.setDownloadType("manual");
jobLog.setType("error");
jobLog.setMsg(msg);
jobLog.setContent(dataSetResult.getReturnMsg());
jobLog.setCreateTime(new Date());
jobLogService.insert(jobLog);
return ResultVOUtils.error(-1, msg + ",错误信息:" + dataSetResult.getReturnMsg());
} else if (dataSetResult.getDataSet().getDeviceInfo() != null && dataSetResult.getDataSet().getDeviceInfo().size() > 0) {
//存储数据
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(dataSetResult.getDataSet());
for (DataSetResult.DataSet ds : dataSets) {
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
Device device = new Device();
device.setHchzsb(item.getHchzsb());
device.setCplx(item.getCplx());
device.setDevicerecordkey(item.getDeviceRecordKey());
deviceService.updateCplx(device);
ProductInfoEntity productInfoEntity = new ProductInfoEntity();
productInfoEntity.setHchzsb(item.getHchzsb());
productInfoEntity.setCplx(item.getCplx());
productInfoEntity.setDeviceRecordKey(item.getDeviceRecordKey());
productInfoService.updateCplx(productInfoEntity);
}
}
}
totalPage = dataSetResult.getTotalPageCount();
totalRecordCount = dataSetResult.getTotalRecordCount();
page++;
}
JobLog jobLog = new JobLog();
jobLog.setType("info");
jobLog.setDownloadType("manual");
jobLog.setMsg("月份:" + month + ",执行成功!");
jobLog.setCreateTime(new Date());
jobLogService.insert(jobLog);
} catch (Exception e) {
e.printStackTrace();
JobLog jobLog = new JobLog();
jobLog.setDownloadType("manual");
jobLog.setType("error");
jobLog.setMsg("月份:" + month + ",执行失败:" + e.getMessage());
jobLog.setContent(JSON.toJSONString(e.getStackTrace()));
jobLog.setCreateTime(new Date());
jobLogService.insert(jobLog);
return ResultVOUtils.error(-1, jobLog.getMsg());
}
return ResultVOUtils.success();
}
}

@ -96,9 +96,9 @@ public class DeviceSaveService {
}
//5 存储 Devicestorage
if(storageInfoAll != null && storageInfoAll.size()>0){
if (storageInfoAll != null && storageInfoAll.size() > 0) {
List<DataSetResult.StorageInfo> storageInfos;
if(isHistory == true)
if (isHistory == true)
storageInfos = storageInfoAll.stream().filter(p -> p.getDeviceHistoryKey().equals(item.getDeviceHistoryKey())).
collect(Collectors.toList());
else
@ -121,14 +121,14 @@ public class DeviceSaveService {
}
//6 存储Devicepackage
if(packingInfoAll != null && packingInfoAll.size()>0){
List<DataSetResult.PackingInfo> packingInfos ;
if(isHistory == true)
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());
collect(Collectors.toList());
if (packingInfos != null && packingInfos.size() > 0) {
List<Devicepackage> devicepackageList = new ArrayList<>();
for (DataSetResult.PackingInfo packingInfo : packingInfos) {
@ -207,6 +207,8 @@ public class DeviceSaveService {
device.setZxxsdyzsydydsl(dataSetBean.getZxxsdyzsydydsl());
device.setBssjzt(dataSetBean.getBssjzt());
device.setLastModifyTime(DateUtil.formatDateTime(new Date()));
device.setCplx(dataSetBean.getCplx());
device.setHchzsb(dataSetBean.getHchzsb());
return device;
}
@ -255,17 +257,18 @@ public class DeviceSaveService {
UUID uuid = UUID.randomUUID();
return uuid.toString().replace("-", "");
}
private String getString(String s){
if(s != null && s!= "")
return s.length()>255 ? s.substring(0,255) : s;
private String getString(String s) {
if (s != null && s != "")
return s.length() > 255 ? s.substring(0, 255) : s;
else return s;
}
private Integer getInteger(String s){
try
{
private Integer getInteger(String s) {
try {
return Integer.parseInt(s);
}catch(Exception e) {
return 0;
} catch (Exception e) {
return 0;
}
}
}

@ -1,13 +1,18 @@
package com.glxp.udidl.admin.service.DataSync;
import cn.hutool.core.collection.CollUtil;
import com.alibaba.fastjson.JSON;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udid.*;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
import com.glxp.udidl.admin.res.udid.DataSetTotalResult;
import com.glxp.udidl.admin.service.inout.ProductInfoService;
import com.glxp.udidl.admin.service.udi.JobLogService;
import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.FilterUdiUtils;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.BeanUtils;
@ -16,6 +21,7 @@ import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@ -29,8 +35,10 @@ public class DeviceSyncService {
private DeviceDownloadService deviceDownloadService;
@Autowired
JobLogService jobLogService; //日志
@Resource
ProductInfoService productInfoService;
public void downloadAndSave(String day,String downloadType){
public void downloadAndSave(String day, String downloadType) {
//1.下载唯一标识数据
DataSetTotalResult result;
String rangeValue = "";
@ -47,9 +55,9 @@ public class DeviceSyncService {
jobLog.setMsg(result.getMsg());
jobLog.setCreateTime(new Date());
jobLogService.insert(jobLog);
return ;
return;
}
int insertCount = deviceSaveService.DeviceSave(result.getData(),DateUtil.parseDate(rangeValue));
int insertCount = deviceSaveService.DeviceSave(result.getData(), DateUtil.parseDate(rangeValue));
//2.下载历史记录
List<String> keyList = new ArrayList<String>();
for (DataSetResult.DataSet ds : result.getData()) {
@ -69,8 +77,8 @@ public class DeviceSyncService {
List<DataSetResult.DataSet> data = result.getData();
data.addAll(res.getData());
result.setData(data);
int hisInsertCount = deviceSaveService.DeviceSave(res.getData(),null);
insertCount = insertCount+hisInsertCount;
int hisInsertCount = deviceSaveService.DeviceSave(res.getData(), null);
insertCount = insertCount + hisInsertCount;
}
} else {
JobLog jobLog = new JobLog();
@ -90,7 +98,7 @@ public class DeviceSyncService {
jobLog.setTotalCount(result.getTotalRecordCount());
jobLog.setRealCount(result.realRecordCount());
jobLog.setInsertCount(insertCount);
if(result.realRecordCount() != result.getTotalRecordCount()) {
if (result.realRecordCount() != result.getTotalRecordCount()) {
jobLog.setType("warning");
jobLog.setMsg("接口总行数和实际行数不一致");
jobLog.setCreateTime(new Date());
@ -101,8 +109,10 @@ public class DeviceSyncService {
}
jobLogService.insert(jobLog);
}
/**
* 1
*
* @param day
*/
/* private void downloadUdi2(String day,String downloadType) {
@ -129,12 +139,11 @@ public class DeviceSyncService {
}
}*/
@Async
public void downloadUdi(String day,String downloadType){
try
{
downloadAndSave(day,downloadType);
public void downloadUdi(String day, String downloadType) {
try {
downloadAndSave(day, downloadType);
//downloadUdi2(day,downloadType);
}catch (Exception e){
} catch (Exception e) {
e.printStackTrace();
JobLog jobLog = new JobLog();
jobLog.setDownloadType(downloadType);
@ -149,114 +158,149 @@ public class DeviceSyncService {
/**
*
*
* @param startDate
* @param endDate
* @return
*/
@Async
public BaseResponse downloadUdi(Date startDate, Date endDate){
if(startDate.getTime() > endDate.getTime())
return ResultVOUtils.error(-1,"起始日期不能大于结束日期!");
Date fdate=startDate;
while (fdate.getTime()<=endDate.getTime()){
String day=DateUtil.formatDate(fdate);
downloadUdi(day,"manual");
fdate = DateUtil.addDays(fdate,1);
}
/*for (int i=0;fdate.getTime()<=endDate.getTime();i++){
String day=DateUtil.formatDate(fdate);
downloadUdi(day,"manual");
//System.out.println(fdate);
i++;
fdate = DateUtil.addDays(fdate,1);
}*/
public BaseResponse downloadUdi(Date startDate, Date endDate) {
if (startDate.getTime() > endDate.getTime())
return ResultVOUtils.error(-1, "起始日期不能大于结束日期!");
Date fdate = startDate;
while (fdate.getTime() <= endDate.getTime()) {
String day = DateUtil.formatDate(fdate);
downloadUdi(day, "manual");
fdate = DateUtil.addDays(fdate, 1);
}
return ResultVOUtils.success("执行完成,详情请查看日志!");
}
public BaseResponse downloadByDi(String deviceId){
public BaseResponse searchDlByDi(String deviceId) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
productInfoFilterRequest.setNameCode(deviceId);
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
if (CollUtil.isEmpty(productInfoEntityList)) {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1)
return ResultVOUtils.error(-1, result1.getReturnMsg());
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
}
return ResultVOUtils.success(productInfoEntityList);
}
public void dlHistory(DataSetSingleResult result1) {
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
result.setDataSet(result1.getDataSet());
if (result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size() > 0) {
List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
if (keyList.size() > 0) {
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
result.setDataList(result2.getData());
}
}
}
public BaseResponse downloadByDi(String deviceId) {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if(result1.getReturnCode() != 1)
return ResultVOUtils.error(-1,result1.getReturnMsg());
if (result1.getReturnCode() != 1)
return ResultVOUtils.error(-1, result1.getReturnMsg());
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
result.setDataSet(result1.getDataSet());
if(result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size()>0){
if (result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size() > 0) {
List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
if(keyList.size()>0){
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
if (keyList.size() > 0) {
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
result.setDataList(result2.getData());
}
}
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
return ResultVOUtils.success(result);
}
public BaseResponse downloadSingle(String deviceId){
public BaseResponse downloadSingle(String deviceId) {
DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId);
if(res.getReturnCode() != 1)
return ResultVOUtils.error(-1,res.getReturnMsg());
return ResultVOUtils.success(Convert(res.getDataSet()));
if (res.getReturnCode() != 1)
return ResultVOUtils.error(-1, res.getReturnMsg());
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(res.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
return ResultVOUtils.success(Convert(res.getDataSet()));
}
/**
*
*
* @param key
* @return
*/
public BaseResponse downloadHistory(String key){
public BaseResponse downloadHistory(String key) {
List<String> keyList = new ArrayList<>();
keyList.add(key);
DataSetTotalResult res = deviceDownloadService.getHistoryData(keyList);
if(res.getCode() != 1)
return ResultVOUtils.error(-1,res.getMsg());
if (res.getCode() != 1)
return ResultVOUtils.error(-1, res.getMsg());
List<DeviceEntity> result = new ArrayList<>();
for(DataSetResult.DataSet ds: res.getData())
for (DataSetResult.DataSet ds : res.getData())
result.addAll(Convert(ds));
return ResultVOUtils.success(result);
}
/**
*
*
* @param dataSet
* @return
*/
private List<DeviceEntity> Convert(DataSetResult.DataSet dataSet){
private List<DeviceEntity> Convert(DataSetResult.DataSet dataSet) {
List<DeviceEntity> result = new ArrayList<>();
List<DataSetResult.DeviceInfo> deviceInfoList = dataSet.getDeviceInfo();
List<DataSetResult.ClinicalInfo> clinicalInfos = dataSet.getClinicalInfo();
List<DataSetResult.StorageInfo> storageInfos = dataSet.getStorageInfo();
List<DataSetResult.PackingInfo> packingInfos = dataSet.getPackingInfo();
if (deviceInfoList != null && deviceInfoList.size()>0){
for(DataSetResult.DeviceInfo ds: deviceInfoList){
if (deviceInfoList != null && deviceInfoList.size() > 0) {
for (DataSetResult.DeviceInfo ds : deviceInfoList) {
DeviceEntity deviceEntity = new DeviceEntity();
BeanUtils.copyProperties(ds, deviceEntity);
deviceEntity.setDevicerecordkey(ds.getDeviceRecordKey());
deviceEntity.setVersionnumber(ds.getVersionNumber()+"");
deviceEntity.setVersionnumber(ds.getVersionNumber() + "");
deviceEntity.setVersionstatus(ds.getVersionStatus());
deviceEntity.setVersiontime(ds.getVersionTime());
deviceEntity.setContactlistList(convertList2List(ds.getContactList(), Contactlist.class));
if(clinicalInfos != null && clinicalInfos.size()>0){
List<DataSetResult.ClinicalInfo> clinicalInfos1 = clinicalInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
if (clinicalInfos != null && clinicalInfos.size() > 0) {
List<DataSetResult.ClinicalInfo> clinicalInfos1 = clinicalInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
collect(Collectors.toList());
if(clinicalInfos1 != null && clinicalInfos1.size()>0){
if (clinicalInfos1 != null && clinicalInfos1.size() > 0) {
deviceEntity.setDeviceclinicals(convertList2List(clinicalInfos1, Deviceclinical.class));
deviceEntity.getDeviceclinicals().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
deviceEntity.getDeviceclinicals().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
}
}
if(storageInfos != null && storageInfos.size()>0){
List<DataSetResult.StorageInfo> storageInfos1 = storageInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
if (storageInfos != null && storageInfos.size() > 0) {
List<DataSetResult.StorageInfo> storageInfos1 = storageInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
collect(Collectors.toList());
if(storageInfos1 != null && storageInfos1.size()>0){
if (storageInfos1 != null && storageInfos1.size() > 0) {
deviceEntity.setDevicestorages(convertList2List(storageInfos1, Devicestorage.class));
deviceEntity.getDevicestorages().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
deviceEntity.getDevicestorages().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
}
}
if(packingInfos != null && packingInfos.size()>0){
List<DataSetResult.PackingInfo> packingInfos1 = packingInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
if (packingInfos != null && packingInfos.size() > 0) {
List<DataSetResult.PackingInfo> packingInfos1 = packingInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
collect(Collectors.toList());
if(packingInfos1 != null && packingInfos1.size()>0){
if (packingInfos1 != null && packingInfos1.size() > 0) {
deviceEntity.setDevicepackages(convertList2List(packingInfos1, Devicepackage.class));
deviceEntity.getDevicepackages().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
deviceEntity.getDevicepackages().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
}
}
@ -266,25 +310,28 @@ public class DeviceSyncService {
}
return result;
}
private <E,T> List<T> convertList2List(List<E> input,Class<T> clzz){
private <E, T> List<T> convertList2List(List<E> input, Class<T> clzz) {
List<T> output = new ArrayList<>();
if(!CollectionUtils.isEmpty(input)){
for(E source:input){
if (!CollectionUtils.isEmpty(input)) {
for (E source : input) {
T target = BeanUtils.instantiate(clzz);
BeanUtils.copyProperties(source,target);
BeanUtils.copyProperties(source, target);
output.add(target);
}
}
return output;
return output;
}
/**
*
*
* @param days
*/
public void downloadUdi(int days) {
for (int i = 1; i <= days; i++) {
String day = DateUtil.getLastDay(-i);
downloadUdi(day,"auto");
downloadUdi(day, "auto");
}
}
}

@ -42,4 +42,6 @@ public interface DeviceService {
List<String> findAllByZxxscpbs();
List<String> findAllByZxxscpbsPage(ListPageRequest listPageRequest);
boolean updateCplx(Device device);
}

@ -29,7 +29,9 @@ public interface ProductInfoService {
List<ProductInfoEntity> syncDlUdi(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> findAll(ProductInfoFilterRequest productInfoFilterRequest);
List<ProductInfoEntity> selectByUpdateTime(String startDate,String endDate);//按更新时间查询
List<ProductInfoEntity> selectByUpdateTime(String startDate, String endDate);//按更新时间查询
boolean insertProductInfo(ProductInfoEntity productInfoEntity);
boolean updateProductByUuid(ProductInfoEntity productInfoEntity);
@ -40,5 +42,7 @@ public interface ProductInfoService {
boolean updateProductInfo(ProductInfoEntity productInfoEntity);
boolean updateCplx(ProductInfoEntity productInfoEntity);
}

@ -205,6 +205,11 @@ public class DeviceServiceImpl implements DeviceService {
return deviceMapper.findAllByZxxscpbsPage(listPageRequest);
}
@Override
public boolean updateCplx(Device device) {
return deviceMapper.updateCplx(device);
}
@Override
public boolean insertDevice(Device device) {
deviceMapper.insert(device);

@ -116,9 +116,11 @@ public class ProductInfoServiceImpl implements ProductInfoService {
List<ProductInfoEntity> data = productInfoDao.filterProductInfo(productInfoFilterRequest);
return data;
}
public List<ProductInfoEntity> selectByUpdateTime(String startDate,String endDate){
return productInfoDao.selectByUpdateTime(startDate,endDate);
public List<ProductInfoEntity> selectByUpdateTime(String startDate, String endDate) {
return productInfoDao.selectByUpdateTime(startDate, endDate);
}
@Override
public boolean insertProductInfo(ProductInfoEntity productInfoEntity) {
return productInfoDao.insertProductInfo(productInfoEntity);
@ -134,6 +136,11 @@ public class ProductInfoServiceImpl implements ProductInfoService {
return productInfoDao.updateProductInfo(productInfoEntity);
}
@Override
public boolean updateCplx(ProductInfoEntity productInfoEntity) {
return productInfoDao.updateCplx(productInfoEntity);
}
@Override
public boolean deleteById(String id) {
return productInfoDao.deleteById(id);

@ -24,5 +24,8 @@ public interface UdiCompanyService {
boolean deleteAll(List<String> ids);
boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity);
BaseResponse searchByName(String name);//公司名称搜索
List<UdiCompanyEntity> syncDlCompany(UdiCompanyRequest udiCompanyRequest);
}

@ -62,8 +62,17 @@ public class UdiCompanyServiceImpl implements UdiCompanyService {
public boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity) {
return udiCompanyDao.updateUdiCompany(udiCompanyEntity);
}
public BaseResponse searchByName(String name){
public BaseResponse searchByName(String name) {
List<String> result = udiCompanyDao.searchByName(name);
return ResultVOUtils.success(result);
}
@Override
public List<UdiCompanyEntity> syncDlCompany(UdiCompanyRequest udiCompanyRequest) {
int offset = (udiCompanyRequest.getPage() - 1) * udiCompanyRequest.getLimit() + 1;
udiCompanyRequest.setPage(offset);
return udiCompanyDao.syncDlCompany(udiCompanyRequest);
}
}

@ -42,9 +42,9 @@ public class AsyncDownloadTask {
@Async
public void downloadByDi(String primaryDeviceId) {
DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService,udiCompanyService);
TokenEntity token = downloadDeviceHelper.getToken();
String token = deviceDownloadService.getToken();
DownloadDiRequest downloadDiRequest = new DownloadDiRequest();
downloadDiRequest.setAccessToken(token.getAccessToken());
downloadDiRequest.setAccessToken(token);
downloadDiRequest.setPrimaryDeviceId(primaryDeviceId);
downloadDeviceHelper.downloadBydi(downloadDiRequest, deviceService,productInfoService);
}
@ -73,6 +73,29 @@ public class AsyncDownloadTask {
}
@Async
public void downloadByMonthTest(String month,int page) {
deviceDownloadService.downloadByMonthTest(month,page);
/*int curpage = page;
DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService,udiCompanyService);
TokenEntity token = downloadDeviceHelper.getToken();
while (true) {
DeviceRequest deviceRequest = new DeviceRequest();
deviceRequest.setAccessToken(token.getAccessToken());
deviceRequest.setRequestType("2");
deviceRequest.setRangeValue(month);
deviceRequest.setCurrentPageNumber(curpage + "");
int result = downloadDeviceHelper.downloadDevices(productInfoService, deviceService, deviceRequest);
if (result == -1) {
return;// ResultVOUtils.error(505, "下载出错");
}
curpage++;
}*/
}
//按天下载UDI , 手动下载
@Async
public void downloadByDay(String day) {

@ -12,6 +12,7 @@ import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
@Service
@ -39,6 +40,7 @@ public class UdiCompanyTask {
udiCompanyEntity.setQylxrcz(contactlist.getQylxrcz());
udiCompanyEntity.setQylxrdh(contactlist.getQylxrdh());
udiCompanyEntity.setQylxryx(contactlist.getQylxryx());
udiCompanyEntity.setUpdateTime(new Date());
}
}
udiCompanyService.insertUdiCompany(udiCompanyEntity);

@ -49,6 +49,8 @@ public class UdiTransferUtils {
productInfoEntity.setCphhhbh(deviceEntity.getCphhhbh());
productInfoEntity.setCpms(deviceEntity.getCpms());
productInfoEntity.setCpbsbmtxmc(deviceEntity.getCpbsbmtxmc());
productInfoEntity.setCplx(deviceEntity.getCplx());
productInfoEntity.setHchzsb(deviceEntity.getHchzsb());
productInfoEntity.setVersionNumber(Integer.parseInt(deviceEntity.getVersionnumber()));
if (deviceEntity.getSydycpbs() != null && !deviceEntity.getSydycpbs().equals("")) {
@ -191,6 +193,7 @@ public class UdiTransferUtils {
if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) {
UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity();
udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm());
udiCompanyEntity.setUpdateTime(new Date());
udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc());
udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc());
List<Contactlist> contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey());

@ -1,10 +1,10 @@
# 本地环境
server.port=9994
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/udidl?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/udidl_test?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
#spring.datasource.password=mysql@2020
spring.datasource.password=123456
spring.datasource.password=mysql@2020
#spring.datasource.password=123456
server.servlet.context-path=
logging.level.com.glxp.udidl.admin.dao=debug
# 跨域设置

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<contextName>logback</contextName>
<property name="log.path" value="D:\\wmslog\\UDI_DL_Server\\" />
<property name="log.path" value="D:\\wmslog\\UDI_DL_Server_test\\" />
<!--输出到控制台-->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<!-- <filter class="ch.qos.logback.classic.filter.ThresholdFilter">

@ -321,7 +321,7 @@
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
ybbm,spmc,cphhhbh,cpms,cpbsbmtxmc,isNewest,updateTime,hchzsb,cplx
)
values
(
@ -361,7 +361,7 @@
#{cpms},
#{cpbsbmtxmc},
#{isNewest},
#{updateTime}
#{updateTime},#{hchzsb},#{cplx}
)
</insert>
@ -408,6 +408,8 @@
<if test="diType != null">diType=#{diType},</if>
<if test="isNewest != null">isNewest=#{isNewest},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="hchzsb != null">hchzsb=#{hchzsb},</if>
<if test="cplx != null">cplx=#{cplx},</if>
</set>
WHERE id = #{id}
</update>
@ -426,6 +428,8 @@
<if test="cpbsbmtxmc != null">cpbsbmtxmc=#{cpbsbmtxmc},</if>
<if test="isNewest != null">isNewest=#{isNewest},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="hchzsb != null">hchzsb=#{hchzsb},</if>
<if test="cplx != null">cplx=#{cplx},</if>
</set>
WHERE uuid = #{uuid}
</update>
@ -445,4 +449,15 @@
<select id="selectByDeviceRecordKey" resultType="com.glxp.udidl.admin.dto.device.ProductDetailModel" parameterType="java.lang.String">
select nameCode,cpmctymc,packLevel,bzcj from productinfo where isNewest=1 and deviceRecordKey=#{key}
</select>
<update id="updateCplx" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
UPDATE productinfo
<set>
<if test="hchzsb != null">hchzsb=#{hchzsb},</if>
<if test="cplx != null">cplx=#{cplx},</if>
</set>
WHERE deviceRecordKey=#{deviceRecordKey}
</update>
</mapper>

@ -5,15 +5,17 @@
<select id="selectAllTyshxyh"
resultType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
SELECT deviceRecordKey,tyshxydm,ylqxzcrbarmc,ylqxzcrbarywmc FROM device
SELECT deviceRecordKey, tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc
FROM device
GROUP BY tyshxydm
</select>
<select id="selectContactBykey" parameterType="Map"
resultType="com.glxp.udidl.admin.entity.udid.Contactlist">
SELECT qylxrdh,qylxryx,qylxrcz from contactlist
WHERE deviceRecordKey = #{deviceRecordKey}
SELECT qylxrdh, qylxryx, qylxrcz
from contactlist
WHERE deviceRecordKey = #{deviceRecordKey}
</select>
<select id="filterUdiCompany"
@ -39,15 +41,33 @@
</where>
</select>
<select id="syncDlCompany" parameterType="com.glxp.udidl.admin.req.UdiCompanyRequest"
resultType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
SELECT * FROM udicompany
<where>
<if test="updateTime!=null and updateTime!=''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>
</if>
</where>
limit #{page},#{limit}
</select>
<select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String">
select ylqxzcrbarmc from udicompany where ylqxzcrbarmc like concat('%',#{name},'%') limit 50
select ylqxzcrbarmc
from udicompany
where ylqxzcrbarmc like concat('%', #{name}, '%') limit 50
</select>
<insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
REPLACE INTO udicompany
REPLACE
INTO udicompany
(
tyshxydm,ylqxzcrbarmc,ylqxzcrbarywmc,qylxrdh,
qylxrcz,qylxryx
qylxrcz,qylxryx,updateTime
)
values
(
@ -56,14 +76,15 @@
#{ylqxzcrbarywmc},
#{qylxrdh},
#{qylxrcz},
#{qylxryx}
#{qylxryx},
#{updateTime}
)
</insert>
<insert id="insertUdiCompanys" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
replace INTO udicompany(
tyshxydm,ylqxzcrbarmc,ylqxzcrbarywmc,qylxrdh,
qylxrcz,qylxryx)
qylxrcz,qylxryx,updateTime)
values
<foreach collection="udiCompanyEntities" item="item" index="index"
separator=",">
@ -74,12 +95,14 @@
#{item.ylqxzcrbarywmc},
#{item.qylxrdh},
#{item.qylxrcz},
#{item.qylxryx})
#{item.qylxryx}),#{item.updateTime}
</foreach>
</insert>
<delete id="deleteById" parameterType="Map">
DELETE FROM udicompany WHERE id = #{id}
DELETE
FROM udicompany
WHERE id = #{id}
</delete>
<delete id="deleteAll" parameterType="java.util.List">
@ -98,6 +121,9 @@
<if test="qylxrdh != null">qylxrdh=#{qylxrdh},</if>
<if test="qylxrcz != null">qylxrcz=#{qylxrcz},</if>
<if test="qylxryx != null">qylxryx=#{qylxryx},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if>
</set>
WHERE id = #{id}
</update>

@ -16,6 +16,7 @@
<result column="flbm" jdbcType="VARCHAR" property="flbm"/>
<result column="ggxh" jdbcType="VARCHAR" property="ggxh"/>
<result column="mjfs" jdbcType="VARCHAR" property="mjfs"/>
<result column="hchzsb" jdbcType="VARCHAR" property="hchzsb"/>
<result column="qtxxdwzlj" jdbcType="VARCHAR" property="qtxxdwzlj"/>
<result column="qxlb" jdbcType="VARCHAR" property="qxlb"/>
<result column="scbssfbhph" jdbcType="VARCHAR" property="scbssfbhph"/>
@ -49,6 +50,7 @@
<result column="zxxsdyzsydydsl" jdbcType="VARCHAR" property="zxxsdyzsydydsl"/>
<result column="deviceHistoryRecordKey" jdbcType="VARCHAR" property="devicehistoryrecordkey"/>
<result column="bssjzt" jdbcType="VARCHAR" property="bssjzt"/>
<result column="cplx" jdbcType="VARCHAR" property="cplx"/>
</resultMap>
<sql id="Example_Where_Clause">
<where>
@ -111,14 +113,16 @@
</where>
</sql>
<sql id="Base_Column_List">
uuid, deviceRecordKey, btcpbs, btcpbsyzxxsdycpbssfyz, cgzmraqxgxx, cpbsbmtxmc, cpbsfbrq,
uuid
, deviceRecordKey, btcpbs, btcpbsyzxxsdycpbssfyz, cgzmraqxgxx, 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
</sql>
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample" resultMap="BaseResultMap">
sfyzcbayz, zcbacpbs, zxxsdyzsydydsl, deviceHistoryRecordKey, bssjzt,hchzsb,cplx
</sql>
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample"
resultMap="BaseResultMap">
select
<if test="distinct">
distinct
@ -139,9 +143,10 @@
where uuid = #{uuid,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
delete from device
where uuid = #{uuid,jdbcType=VARCHAR}
</delete>
delete
from device
where uuid = #{uuid,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample">
delete from device
<if test="_parameter != null">
@ -149,39 +154,41 @@
</if>
</delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Device">
insert into device (uuid, deviceRecordKey, btcpbs,
btcpbsyzxxsdycpbssfyz, cgzmraqxgxx, 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,lastModifyTime,requestDate)
values (#{uuid,jdbcType=VARCHAR}, #{devicerecordkey,jdbcType=VARCHAR}, #{btcpbs,jdbcType=VARCHAR},
#{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR}, #{cgzmraqxgxx,jdbcType=VARCHAR}, #{cpbsbmtxmc,jdbcType=VARCHAR},
#{cpbsfbrq,jdbcType=VARCHAR}, #{cphhhbh,jdbcType=VARCHAR}, #{cplb,jdbcType=VARCHAR},
#{cpmctymc,jdbcType=VARCHAR}, #{cpms,jdbcType=VARCHAR}, #{flbm,jdbcType=VARCHAR},
#{ggxh,jdbcType=VARCHAR}, #{mjfs,jdbcType=VARCHAR}, #{qtxxdwzlj,jdbcType=VARCHAR},
#{qxlb,jdbcType=VARCHAR}, #{scbssfbhph,jdbcType=VARCHAR}, #{scbssfbhscrq,jdbcType=VARCHAR},
#{scbssfbhsxrq,jdbcType=VARCHAR}, #{scbssfbhxlh,jdbcType=VARCHAR}, #{sfbjwycxsy,jdbcType=VARCHAR},
#{sfwblztlcp,jdbcType=VARCHAR}, #{sfwwjbz,jdbcType=VARCHAR}, #{sfybtzjbs,jdbcType=VARCHAR},
#{spmc,jdbcType=VARCHAR}, #{sydycpbs,jdbcType=VARCHAR}, #{syqsfxyjxmj,jdbcType=VARCHAR},
#{tscchcztj,jdbcType=VARCHAR}, #{tsccsm,jdbcType=VARCHAR}, #{tsrq,jdbcType=VARCHAR},
#{tyshxydm,jdbcType=VARCHAR}, #{versionnumber,jdbcType=VARCHAR}, #{versionstatus,jdbcType=VARCHAR},
#{versiontime,jdbcType=VARCHAR}, #{ybbm,jdbcType=VARCHAR}, #{yflbm,jdbcType=VARCHAR},
#{ylqxzcrbarmc,jdbcType=VARCHAR}, #{ylqxzcrbarywmc,jdbcType=VARCHAR}, #{zczbhhzbapzbh,jdbcType=VARCHAR},
#{zdcfsycs,jdbcType=VARCHAR}, #{zxxsdycpbs,jdbcType=VARCHAR}, #{bszt,jdbcType=VARCHAR},
#{sfyzcbayz,jdbcType=VARCHAR}, #{zcbacpbs,jdbcType=VARCHAR}, #{zxxsdyzsydydsl,jdbcType=VARCHAR},
#{devicehistoryrecordkey,jdbcType=VARCHAR}, #{bssjzt,jdbcType=VARCHAR},#{lastModifyTime,jdbcType=VARCHAR},#{requestDate})
</insert>
insert into device (uuid, deviceRecordKey, btcpbs,
btcpbsyzxxsdycpbssfyz, cgzmraqxgxx, 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, lastModifyTime, requestDate,hchzsb,cplx)
values (#{uuid,jdbcType=VARCHAR}, #{devicerecordkey,jdbcType=VARCHAR}, #{btcpbs,jdbcType=VARCHAR},
#{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR}, #{cgzmraqxgxx,jdbcType=VARCHAR},
#{cpbsbmtxmc,jdbcType=VARCHAR},
#{cpbsfbrq,jdbcType=VARCHAR}, #{cphhhbh,jdbcType=VARCHAR}, #{cplb,jdbcType=VARCHAR},
#{cpmctymc,jdbcType=VARCHAR}, #{cpms,jdbcType=VARCHAR}, #{flbm,jdbcType=VARCHAR},
#{ggxh,jdbcType=VARCHAR}, #{mjfs,jdbcType=VARCHAR}, #{qtxxdwzlj,jdbcType=VARCHAR},
#{qxlb,jdbcType=VARCHAR}, #{scbssfbhph,jdbcType=VARCHAR}, #{scbssfbhscrq,jdbcType=VARCHAR},
#{scbssfbhsxrq,jdbcType=VARCHAR}, #{scbssfbhxlh,jdbcType=VARCHAR}, #{sfbjwycxsy,jdbcType=VARCHAR},
#{sfwblztlcp,jdbcType=VARCHAR}, #{sfwwjbz,jdbcType=VARCHAR}, #{sfybtzjbs,jdbcType=VARCHAR},
#{spmc,jdbcType=VARCHAR}, #{sydycpbs,jdbcType=VARCHAR}, #{syqsfxyjxmj,jdbcType=VARCHAR},
#{tscchcztj,jdbcType=VARCHAR}, #{tsccsm,jdbcType=VARCHAR}, #{tsrq,jdbcType=VARCHAR},
#{tyshxydm,jdbcType=VARCHAR}, #{versionnumber,jdbcType=VARCHAR}, #{versionstatus,jdbcType=VARCHAR},
#{versiontime,jdbcType=VARCHAR}, #{ybbm,jdbcType=VARCHAR}, #{yflbm,jdbcType=VARCHAR},
#{ylqxzcrbarmc,jdbcType=VARCHAR}, #{ylqxzcrbarywmc,jdbcType=VARCHAR}, #{zczbhhzbapzbh,jdbcType=VARCHAR},
#{zdcfsycs,jdbcType=VARCHAR}, #{zxxsdycpbs,jdbcType=VARCHAR}, #{bszt,jdbcType=VARCHAR},
#{sfyzcbayz,jdbcType=VARCHAR}, #{zcbacpbs,jdbcType=VARCHAR}, #{zxxsdyzsydydsl,jdbcType=VARCHAR},
#{devicehistoryrecordkey,jdbcType=VARCHAR}, #{bssjzt,jdbcType=VARCHAR},
#{lastModifyTime,jdbcType=VARCHAR}, #{requestDate},#{hchzsb},#{cplx})
</insert>
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Device">
insert into device
<trim prefix="(" suffix=")" suffixOverrides=",">
@ -326,6 +333,10 @@
<if test="bssjzt != null">
bssjzt,
</if>
<if test="hchzsb != null">
hchzsb,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="uuid != null">
@ -469,6 +480,10 @@
<if test="bssjzt != null">
#{bssjzt,jdbcType=VARCHAR},
</if>
<if test="hchzsb != null">
#{hchzsb,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceExample"
@ -821,67 +836,78 @@
<if test="bssjzt != null">
bssjzt = #{bssjzt,jdbcType=VARCHAR},
</if>
<if test="hchzsb != null">
hchzsb = #{bssjzt,jdbcType=VARCHAR},
</if>
</set>
where uuid = #{uuid,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Device">
update device
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
btcpbs = #{btcpbs,jdbcType=VARCHAR},
btcpbsyzxxsdycpbssfyz = #{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR},
cgzmraqxgxx = #{cgzmraqxgxx,jdbcType=VARCHAR},
cpbsbmtxmc = #{cpbsbmtxmc,jdbcType=VARCHAR},
cpbsfbrq = #{cpbsfbrq,jdbcType=VARCHAR},
cphhhbh = #{cphhhbh,jdbcType=VARCHAR},
cplb = #{cplb,jdbcType=VARCHAR},
cpmctymc = #{cpmctymc,jdbcType=VARCHAR},
cpms = #{cpms,jdbcType=VARCHAR},
flbm = #{flbm,jdbcType=VARCHAR},
ggxh = #{ggxh,jdbcType=VARCHAR},
mjfs = #{mjfs,jdbcType=VARCHAR},
qtxxdwzlj = #{qtxxdwzlj,jdbcType=VARCHAR},
qxlb = #{qxlb,jdbcType=VARCHAR},
scbssfbhph = #{scbssfbhph,jdbcType=VARCHAR},
scbssfbhscrq = #{scbssfbhscrq,jdbcType=VARCHAR},
scbssfbhsxrq = #{scbssfbhsxrq,jdbcType=VARCHAR},
scbssfbhxlh = #{scbssfbhxlh,jdbcType=VARCHAR},
sfbjwycxsy = #{sfbjwycxsy,jdbcType=VARCHAR},
sfwblztlcp = #{sfwblztlcp,jdbcType=VARCHAR},
sfwwjbz = #{sfwwjbz,jdbcType=VARCHAR},
sfybtzjbs = #{sfybtzjbs,jdbcType=VARCHAR},
spmc = #{spmc,jdbcType=VARCHAR},
sydycpbs = #{sydycpbs,jdbcType=VARCHAR},
syqsfxyjxmj = #{syqsfxyjxmj,jdbcType=VARCHAR},
tscchcztj = #{tscchcztj,jdbcType=VARCHAR},
tsccsm = #{tsccsm,jdbcType=VARCHAR},
tsrq = #{tsrq,jdbcType=VARCHAR},
tyshxydm = #{tyshxydm,jdbcType=VARCHAR},
versionNumber = #{versionnumber,jdbcType=VARCHAR},
versionStatus = #{versionstatus,jdbcType=VARCHAR},
versionTime = #{versiontime,jdbcType=VARCHAR},
ybbm = #{ybbm,jdbcType=VARCHAR},
yflbm = #{yflbm,jdbcType=VARCHAR},
ylqxzcrbarmc = #{ylqxzcrbarmc,jdbcType=VARCHAR},
ylqxzcrbarywmc = #{ylqxzcrbarywmc,jdbcType=VARCHAR},
zczbhhzbapzbh = #{zczbhhzbapzbh,jdbcType=VARCHAR},
zdcfsycs = #{zdcfsycs,jdbcType=VARCHAR},
zxxsdycpbs = #{zxxsdycpbs,jdbcType=VARCHAR},
bszt = #{bszt,jdbcType=VARCHAR},
sfyzcbayz = #{sfyzcbayz,jdbcType=VARCHAR},
zcbacpbs = #{zcbacpbs,jdbcType=VARCHAR},
zxxsdyzsydydsl = #{zxxsdyzsydydsl,jdbcType=VARCHAR},
deviceHistoryRecordKey = #{devicehistoryrecordkey,jdbcType=VARCHAR},
bssjzt = #{bssjzt,jdbcType=VARCHAR}
where uuid = #{uuid,jdbcType=VARCHAR}
</update>
update device
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
btcpbs = #{btcpbs,jdbcType=VARCHAR},
btcpbsyzxxsdycpbssfyz = #{btcpbsyzxxsdycpbssfyz,jdbcType=VARCHAR},
cgzmraqxgxx = #{cgzmraqxgxx,jdbcType=VARCHAR},
cpbsbmtxmc = #{cpbsbmtxmc,jdbcType=VARCHAR},
cpbsfbrq = #{cpbsfbrq,jdbcType=VARCHAR},
cphhhbh = #{cphhhbh,jdbcType=VARCHAR},
cplb = #{cplb,jdbcType=VARCHAR},
cpmctymc = #{cpmctymc,jdbcType=VARCHAR},
cpms = #{cpms,jdbcType=VARCHAR},
flbm = #{flbm,jdbcType=VARCHAR},
ggxh = #{ggxh,jdbcType=VARCHAR},
mjfs = #{mjfs,jdbcType=VARCHAR},
qtxxdwzlj = #{qtxxdwzlj,jdbcType=VARCHAR},
qxlb = #{qxlb,jdbcType=VARCHAR},
scbssfbhph = #{scbssfbhph,jdbcType=VARCHAR},
scbssfbhscrq = #{scbssfbhscrq,jdbcType=VARCHAR},
scbssfbhsxrq = #{scbssfbhsxrq,jdbcType=VARCHAR},
scbssfbhxlh = #{scbssfbhxlh,jdbcType=VARCHAR},
sfbjwycxsy = #{sfbjwycxsy,jdbcType=VARCHAR},
sfwblztlcp = #{sfwblztlcp,jdbcType=VARCHAR},
sfwwjbz = #{sfwwjbz,jdbcType=VARCHAR},
sfybtzjbs = #{sfybtzjbs,jdbcType=VARCHAR},
spmc = #{spmc,jdbcType=VARCHAR},
sydycpbs = #{sydycpbs,jdbcType=VARCHAR},
syqsfxyjxmj = #{syqsfxyjxmj,jdbcType=VARCHAR},
tscchcztj = #{tscchcztj,jdbcType=VARCHAR},
tsccsm = #{tsccsm,jdbcType=VARCHAR},
tsrq = #{tsrq,jdbcType=VARCHAR},
tyshxydm = #{tyshxydm,jdbcType=VARCHAR},
versionNumber = #{versionnumber,jdbcType=VARCHAR},
versionStatus = #{versionstatus,jdbcType=VARCHAR},
versionTime = #{versiontime,jdbcType=VARCHAR},
ybbm = #{ybbm,jdbcType=VARCHAR},
yflbm = #{yflbm,jdbcType=VARCHAR},
ylqxzcrbarmc = #{ylqxzcrbarmc,jdbcType=VARCHAR},
ylqxzcrbarywmc = #{ylqxzcrbarywmc,jdbcType=VARCHAR},
zczbhhzbapzbh = #{zczbhhzbapzbh,jdbcType=VARCHAR},
zdcfsycs = #{zdcfsycs,jdbcType=VARCHAR},
zxxsdycpbs = #{zxxsdycpbs,jdbcType=VARCHAR},
bszt = #{bszt,jdbcType=VARCHAR},
sfyzcbayz = #{sfyzcbayz,jdbcType=VARCHAR},
zcbacpbs = #{zcbacpbs,jdbcType=VARCHAR},
zxxsdyzsydydsl = #{zxxsdyzsydydsl,jdbcType=VARCHAR},
deviceHistoryRecordKey = #{devicehistoryrecordkey,jdbcType=VARCHAR},
bssjzt = #{bssjzt,jdbcType=VARCHAR}
hchzsb = #{hchzsb,jdbcType=VARCHAR}
where uuid = #{uuid,jdbcType=VARCHAR}
</update>
<select id="searchBykey" parameterType="com.glxp.udidl.admin.req.udid.DeviceListRequest" resultMap="BaseResultMap">
select * from device WHERE ( zxxsdycpbs like concat(#{key},'%') or cpmctymc like concat(#{key},'%') ) limit #{page},#{limit}
select *
from device
WHERE (zxxsdycpbs like concat(#{key}, '%') or cpmctymc like concat(#{key}, '%')) limit #{page}
, #{limit}
</select>
<select id="searchByBs" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT * FROM device WHERE `zxxsdycpbs`= #{zxxsdycpbs}
SELECT *
FROM device
WHERE `zxxsdycpbs` = #{zxxsdycpbs}
</select>
<select id="search" parameterType="com.glxp.udidl.admin.req.udid.DeviceSearchRequest" resultMap="BaseResultMap">
@ -931,44 +957,71 @@
</where>
</select>
<delete id="deleteHistory" parameterType="Map">
DELETE FROM device WHERE deviceRecordKey = #{deviceRecordKey}
DELETE
FROM device
WHERE deviceRecordKey = #{deviceRecordKey}
</delete>
<select id="searchByDeviceRecordKey" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT * from device WHERE deviceRecordKey = #{deviceRecordKey} ORDER BY versionNumber DESC LIMIT 1
SELECT *
from device
WHERE deviceRecordKey = #{deviceRecordKey}
ORDER BY versionNumber DESC LIMIT 1
</select>
<select id="searchByZxxscpbs" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT * from device
SELECT *
from device
WHERE zxxsdycpbs = #{zxxsdycpbs}
WHERE zxxsdycpbs = #{zxxsdycpbs}
ORDER BY versionNumber DESC LIMIT 1
ORDER BY versionNumber DESC LIMIT 1
</select>
<select id="searchHistory" parameterType="Map" resultType="com.glxp.udidl.admin.entity.udid.Device">
SELECT * from device WHERE deviceRecordKey = #{deviceRecordKey}
SELECT *
from device
WHERE deviceRecordKey = #{deviceRecordKey}
</select>
<select id="selectisSame" parameterType="Map" resultType="java.lang.String">
SELECT uuid from device WHERE deviceRecordKey = #{deviceRecordKey} and versionNumber = #{versionNumber} limit 1
SELECT uuid
from device
WHERE deviceRecordKey = #{deviceRecordKey}
and versionNumber = #{versionNumber} limit 1
</select>
<select id="selectKey" parameterType="Map" resultType="java.lang.String">
SELECT uuid from device WHERE zxxsdycpbs = #{zxxsdycpbs} limit 1
SELECT uuid
from device
WHERE zxxsdycpbs = #{zxxsdycpbs} limit 1
</select>
<select id="findAllByZxxscpbs" resultType="java.lang.String">
SELECT uuid from device
<select id="findAllByZxxscpbs" resultType="java.lang.String">
SELECT uuid
from device
</select>
<select id="findAllByZxxscpbsPage" parameterType="com.glxp.udidl.admin.req.ListPageRequest" resultType="java.lang.String">
SELECT uuid from device limit #{page},#{limit}
<select id="findAllByZxxscpbsPage" parameterType="com.glxp.udidl.admin.req.ListPageRequest"
resultType="java.lang.String">
SELECT uuid
from device limit #{page},#{limit}
</select>
<select id="downloadDevice" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap">
select * from device
limit #{page},#{limit}
select *
from device limit #{page},#{limit}
</select>
<update id="updateCplx" parameterType="com.glxp.udidl.admin.entity.udid.Device">
UPDATE device
<set>
<if test="hchzsb != null">hchzsb=#{hchzsb},</if>
<if test="cplx != null">cplx=#{cplx},</if>
</set>
WHERE devicerecordkey=#{devicerecordkey}
</update>
</mapper>
Loading…
Cancel
Save