1.合并旧项目代码变更

master
x_z 3 years ago
parent f4e8d6832f
commit 987f609662

@ -28,7 +28,7 @@
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>1.2.51</version> <version>2.0.4</version>
</dependency> </dependency>
<!--common--> <!--common-->

@ -175,6 +175,29 @@ public class DownloadDeviceHelper {
return result; 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); String response = HttpClient.post(url, deviceRequest);

@ -3,12 +3,15 @@ package com.glxp.udidl.admin.controller.device;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
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.udid.UdiEntity; import com.glxp.udidl.admin.entity.udid.UdiEntity;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest; 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.res.BaseResponse;
import com.glxp.udidl.admin.res.PageSimpleResponse; import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.res.udid.ProductInfoResponse; import com.glxp.udidl.admin.res.udid.ProductInfoResponse;
import com.glxp.udidl.admin.service.inout.ProductInfoService; 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.thread.AsyncDownloadTask;
import com.glxp.udidl.admin.util.FilterUdiUtils; import com.glxp.udidl.admin.util.FilterUdiUtils;
import com.glxp.udidl.admin.util.ResultVOUtils; import com.glxp.udidl.admin.util.ResultVOUtils;
@ -31,6 +34,8 @@ public class ProductInfoController {
@Resource @Resource
ProductInfoService productInfoService; ProductInfoService productInfoService;
@Resource @Resource
UdiCompanyService udiCompanyService;
@Resource
AsyncDownloadTask asyncDownloadTask; AsyncDownloadTask asyncDownloadTask;
//手持枪扫码查询 //手持枪扫码查询
@ -123,6 +128,13 @@ public class ProductInfoController {
return ResultVOUtils.success(productInfoEntityList); return ResultVOUtils.success(productInfoEntityList);
} }
//出入库同步下载
@AuthRuleAnnotation("udidl_company_all")
@GetMapping("udidl/udiwms/syncCompany")
public BaseResponse syncCompany(UdiCompanyRequest udiCompanyRequest) {
List<UdiCompanyEntity> udiCompanyEntities = udiCompanyService.syncDlCompany(udiCompanyRequest);
return ResultVOUtils.success(udiCompanyEntities);
}
//开放查询 查询只查询主DI //开放查询 查询只查询主DI
@ApiOperation(value = "根据主DI查询产品信息", response = ProductInfoEntity.class) @ApiOperation(value = "根据主DI查询产品信息", response = ProductInfoEntity.class)
@ -163,9 +175,9 @@ public class ProductInfoController {
} }
} }
if (productInfoFilterRequest.getCpmctymc() != null && !productInfoFilterRequest.getCpmctymc().equals("") && productInfoFilterRequest.getCpmctymc().length() < 4) { /* if (productInfoFilterRequest.getCpmctymc() != null && !productInfoFilterRequest.getCpmctymc().equals("") && productInfoFilterRequest.getCpmctymc().length() < 4) {
return ResultVOUtils.error(500, "请输入完整的产品通用名称!"); return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
} }*/
productInfoFilterRequest.setIsNewest(1); productInfoFilterRequest.setIsNewest(1);
productInfoFilterRequest.setDiType("1"); productInfoFilterRequest.setDiType("1");
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest); List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
@ -230,7 +242,7 @@ public class ProductInfoController {
return ResultVOUtils.success(pageSimpleResponse); return ResultVOUtils.success(pageSimpleResponse);
} }
@ApiOperation(value = "根据UUID查询产品信息",response = ProductInfoEntity.class) @ApiOperation(value = "根据UUID查询产品信息", response = ProductInfoEntity.class)
@AuthRuleAnnotation("udidl/device/filterByUuid") @AuthRuleAnnotation("udidl/device/filterByUuid")
@GetMapping("udidl/device/filterByUuid") @GetMapping("udidl/device/filterByUuid")
public BaseResponse filterByUuid(ProductInfoFilterRequest productInfoFilterRequest) { public BaseResponse filterByUuid(ProductInfoFilterRequest productInfoFilterRequest) {
@ -238,7 +250,7 @@ public class ProductInfoController {
return ResultVOUtils.success(productInfoEntityList); return ResultVOUtils.success(productInfoEntityList);
} }
@ApiOperation(value = "根据最小标识查询产品信息",response = ProductInfoEntity.class) @ApiOperation(value = "根据最小标识查询产品信息", response = ProductInfoEntity.class)
@AuthRuleAnnotation("udidl/device/filterByNameCode") @AuthRuleAnnotation("udidl/device/filterByNameCode")
@GetMapping("udidl/device/filterByNameCode") @GetMapping("udidl/device/filterByNameCode")
public BaseResponse filterByNameCode(ProductInfoFilterRequest productInfoFilterRequest) { public BaseResponse filterByNameCode(ProductInfoFilterRequest productInfoFilterRequest) {

@ -2,8 +2,13 @@ package com.glxp.udidl.admin.controller.device;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
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.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.Contactlist;
import com.glxp.udidl.admin.entity.udid.Device; import com.glxp.udidl.admin.entity.udid.Device;
import com.glxp.udidl.admin.req.ListPageRequest; 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.res.BaseResponse;
import com.glxp.udidl.admin.service.dataSync.DeviceSyncService; import com.glxp.udidl.admin.service.dataSync.DeviceSyncService;
import com.glxp.udidl.admin.service.dataSync.UdplatDownloadService; import com.glxp.udidl.admin.service.dataSync.UdplatDownloadService;
@ -24,6 +29,7 @@ import org.springframework.web.bind.annotation.RestController;
import springfox.documentation.annotations.ApiIgnore; import springfox.documentation.annotations.ApiIgnore;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Date;
import java.util.List; import java.util.List;
@ApiIgnore @ApiIgnore
@ -96,6 +102,13 @@ public class TestController {
asyncDownloadTask.downloadByMonth(month, page); 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") @GetMapping("/test/getDistributor")
public String udplatTest() { public String udplatTest() {
return udplatDownloadService.getDistributor(); return udplatDownloadService.getDistributor();
@ -131,4 +144,40 @@ public class TestController {
public JSONObject getDistributeOrderDetails(Long orderId) { public JSONObject getDistributeOrderDetails(Long orderId) {
return udplatDownloadService.getDistributeOrderDetails(orderId); return udplatDownloadService.getDistributeOrderDetails(orderId);
} }
@GetMapping("/test/transferUdiCompany")
public BaseResponse transferUdiCompany(String nameCode) {
//更新为最新版本
ProductInfoFilterRequest filterRequest1 = new ProductInfoFilterRequest();
filterRequest1.setNameCode(nameCode);
List<ProductInfoEntity> updateEntitys = productInfoService.filterUdi(filterRequest1);
ProductInfoEntity productInfoEntity;
if (updateEntitys != null && updateEntitys.size() > 0) {
//获取最高版本号
productInfoEntity = updateEntitys.get(0);
//更新厂家信息,
UdiCompanyRequest udiCompanyRequest = new UdiCompanyRequest();
udiCompanyRequest.setTyshxydm(productInfoEntity.getTyshxydm());
List<UdiCompanyEntity> udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest);
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());
if (contactlists != null && contactlists.size() > 0) {
udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz());
udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh());
udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx());
}
udiCompanyEntity.setUpdateTime(new Date());
udiCompanyService.insertUdiCompany(udiCompanyEntity);
return ResultVOUtils.success(udiCompanyEntity);
}
}
return ResultVOUtils.error(500, "未查询到数据");
}
} }

@ -59,6 +59,13 @@ public class UdidlDeviceController {
return deviceSyncService.downloadByDi(deviceId); return deviceSyncService.downloadByDi(deviceId);
} }
@AuthRuleAnnotation("udidl_udidlDevice_all")
@GetMapping("udidl/device/serchDlByDi")
public BaseResponse serchDlByDi(String deviceId) {
return deviceSyncService.searchDlByDi(deviceId);
}
/** /**
* *
* *

@ -48,4 +48,6 @@ public interface ProductInfoMapper extends BaseMapper<ProductInfoEntity> {
List<String> findAllTyshxyh(); List<String> findAllTyshxyh();
List<ProductDetailModel> selectByDeviceRecordKey(String key); List<ProductDetailModel> selectByDeviceRecordKey(String key);
boolean updateCplx(ProductInfoEntity productInfoEntity);
} }

@ -28,4 +28,6 @@ public interface UdiCompanyMapper extends BaseMapper<UdiCompanyEntity> {
List<String> searchByName(String name);//公司名称搜索 List<String> searchByName(String name);//公司名称搜索
List<UdiCompanyEntity> syncDlCompany(UdiCompanyRequest udiCompanyRequest);
} }

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

@ -138,4 +138,11 @@ public class ProductInfoEntity {
@ApiModelProperty(value = "更新时间", example = "2022-05-09 14:36:00") @ApiModelProperty(value = "更新时间", example = "2022-05-09 14:36:00")
@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 Date updateTime;
@ApiModelProperty(value = "是否最新")
private String hchzsb;
@ApiModelProperty(value = "产品类型")
private String cplx;
} }

@ -156,6 +156,11 @@ public class Device {
@ApiModelProperty(value = "请求日期") @ApiModelProperty(value = "请求日期")
private Date requestDate; private Date requestDate;
private String hchzsb;
@ApiModelProperty(value = "产品类型")
private String cplx;
public Date getRequestDate() { public Date getRequestDate() {
return requestDate; return requestDate;
} }
@ -188,6 +193,22 @@ public class Device {
this.btcpbs = btcpbs == null ? null : btcpbs.trim(); this.btcpbs = btcpbs == null ? null : btcpbs.trim();
} }
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 getBtcpbsyzxxsdycpbssfyz() { public String getBtcpbsyzxxsdycpbssfyz() {
return btcpbsyzxxsdycpbssfyz; return btcpbsyzxxsdycpbssfyz;
} }

@ -203,6 +203,11 @@ public class DeviceEntity {
@ApiModelProperty(value = "") @ApiModelProperty(value = "")
private boolean check; private boolean check;
private String hchzsb;
@ApiModelProperty(value = "产品类型")
private String cplx;
@ApiModelProperty(value = "联系人信息") @ApiModelProperty(value = "联系人信息")
private List<Contactlist> contactlistList; private List<Contactlist> contactlistList;

@ -23,4 +23,6 @@ public class UdiCompanyRequest extends ListPageRequest {
@ApiModelProperty(value = "区域代码") @ApiModelProperty(value = "区域代码")
private String areaCode; private String areaCode;
@ApiModelProperty(value = "更新时间")
private String updateTime;
} }

@ -92,6 +92,8 @@ public class DataSetBean {
private String ylqxzcrbarywmc; private String ylqxzcrbarywmc;
private String zxxsdyzsydydsl; private String zxxsdyzsydydsl;
private String tsrq; private String tsrq;
private String hchzsb;
private String cplx;
private String bszt; private String bszt;
private String sfyzcbayz; private String sfyzcbayz;
@ -102,6 +104,22 @@ public class DataSetBean {
private List<DeviceStorageBean> deviceStorage; private List<DeviceStorageBean> deviceStorage;
private List<ContactListBean> contactList; 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() { public String getDeviceHistoryRecordKey() {
return deviceHistoryRecordKey; return deviceHistoryRecordKey;
} }

@ -75,7 +75,7 @@ public class DataSetResult {
private String bssjzt; //"标识数据状态 private String bssjzt; //"标识数据状态
//文档有,接口返回无该字段 //文档有,接口返回无该字段
private String cplx; //"产品类型1 器械2 体外诊断试剂 private String cplx; //"产品类型1 器械2 体外诊断试剂
private String HCHZSB; //耗材或者设备:0 耗材, 1 设备 private String hchzsb; //耗材或者设备:0 耗材, 1 设备
private List<ContactInfo> contactList; private List<ContactInfo> contactList;
} }

@ -4,6 +4,8 @@ package com.glxp.udidl.admin.service.dataSync;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.entity.info.CompanyEntity; 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.JobLog;
import com.glxp.udidl.admin.entity.udid.TokenEntity; import com.glxp.udidl.admin.entity.udid.TokenEntity;
import com.glxp.udidl.admin.req.udid.DeviceRequest; import com.glxp.udidl.admin.req.udid.DeviceRequest;
@ -16,6 +18,8 @@ import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleResult; import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
import com.glxp.udidl.admin.res.udid.DataSetTotalResult; import com.glxp.udidl.admin.res.udid.DataSetTotalResult;
import com.glxp.udidl.admin.service.info.CompanyService; 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.JobLogService;
import com.glxp.udidl.admin.util.DateUtil; import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.HttpClient; import com.glxp.udidl.admin.util.HttpClient;
@ -50,6 +54,10 @@ public class DeviceDownloadService {
JobLogService jobLogService; //日志 JobLogService jobLogService; //日志
@Autowired @Autowired
DeviceSaveService deviceSaveService; DeviceSaveService deviceSaveService;
@Autowired
private DeviceService deviceService;
@Autowired
private ProductInfoService productInfoService;
private void SetTokenEmpty() { private void SetTokenEmpty() {
token = ""; token = "";
@ -362,4 +370,70 @@ public class DeviceDownloadService {
} }
return ResultVOUtils.success(); 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();
}
} }

@ -206,6 +206,8 @@ public class DeviceSaveService {
device.setZxxsdyzsydydsl(dataSetBean.getZxxsdyzsydydsl()); device.setZxxsdyzsydydsl(dataSetBean.getZxxsdyzsydydsl());
device.setBssjzt(dataSetBean.getBssjzt()); device.setBssjzt(dataSetBean.getBssjzt());
device.setLastModifyTime(DateUtil.formatDateTime(new Date())); device.setLastModifyTime(DateUtil.formatDateTime(new Date()));
device.setCplx(dataSetBean.getCplx());
device.setHchzsb(dataSetBean.getHchzsb());
return device; return device;
} }

@ -1,22 +1,26 @@
package com.glxp.udidl.admin.service.dataSync; package com.glxp.udidl.admin.service.dataSync;
import cn.hutool.core.collection.CollUtil;
import com.alibaba.fastjson.JSON; 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.entity.udid.*;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.res.BaseResponse; import com.glxp.udidl.admin.res.BaseResponse;
import com.glxp.udidl.admin.res.udid.DataSetResult; import com.glxp.udidl.admin.res.udid.DataSetResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult; import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
import com.glxp.udidl.admin.res.udid.DataSetSingleResult; import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
import com.glxp.udidl.admin.res.udid.DataSetTotalResult; 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.service.udi.JobLogService;
import com.glxp.udidl.admin.util.DateUtil; import com.glxp.udidl.admin.util.DateUtil;
import com.glxp.udidl.admin.util.ResultVOUtils; import com.glxp.udidl.admin.util.ResultVOUtils;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async; import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
import javax.annotation.Resource;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -26,12 +30,14 @@ import java.util.stream.Collectors;
@Service @Service
public class DeviceSyncService { public class DeviceSyncService {
@Autowired @Resource
private DeviceSaveService deviceSaveService; private DeviceSaveService deviceSaveService;
@Autowired @Resource
private DeviceDownloadService deviceDownloadService; private DeviceDownloadService deviceDownloadService;
@Autowired @Resource
JobLogService jobLogService; //日志 JobLogService jobLogService; //日志
@Resource
private ProductInfoService productInfoService;
public void downloadAndSave(String day, String downloadType) { public void downloadAndSave(String day, String downloadType) {
//1.下载唯一标识数据 //1.下载唯一标识数据
@ -142,6 +148,41 @@ public class DeviceSyncService {
return ResultVOUtils.success("执行完成,详情请查看日志!"); return ResultVOUtils.success("执行完成,详情请查看日志!");
} }
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());
if (CollUtil.isNotEmpty(result1.getDataSet().getDeviceInfo())) {
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
} else {
return ResultVOUtils.error(501, "医疗器械唯一标识数据库未找到此产品DI,请检查是否输入正确或联系厂家是否已上传");
}
}
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) { public BaseResponse downloadByDi(String deviceId) {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId); DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1) if (result1.getReturnCode() != 1)
@ -155,6 +196,9 @@ public class DeviceSyncService {
result.setDataList(result2.getData()); result.setDataList(result2.getData());
} }
} }
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
return ResultVOUtils.success(result); return ResultVOUtils.success(result);
} }
@ -162,8 +206,10 @@ public class DeviceSyncService {
DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId); DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId);
if (res.getReturnCode() != 1) if (res.getReturnCode() != 1)
return ResultVOUtils.error(-1, res.getReturnMsg()); 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())); return ResultVOUtils.success(Convert(res.getDataSet()));
} }
/** /**

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

@ -42,5 +42,5 @@ public interface ProductInfoService {
boolean updateProductInfo(ProductInfoEntity productInfoEntity); boolean updateProductInfo(ProductInfoEntity productInfoEntity);
boolean updateCplx(ProductInfoEntity productInfoEntity);
} }

@ -206,6 +206,12 @@ public class DeviceServiceImpl implements DeviceService {
return deviceMapper.findAllByZxxscpbsPage(listPageRequest); return deviceMapper.findAllByZxxscpbsPage(listPageRequest);
} }
@Transactional(rollbackFor = Exception.class)
@Override
public boolean updateCplx(Device device) {
return deviceMapper.updateCplx(device);
}
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public boolean insertDevice(Device device) { public boolean insertDevice(Device device) {

@ -138,6 +138,12 @@ public class ProductInfoServiceImpl implements ProductInfoService {
return productInfoDao.updateProductInfo(productInfoEntity); return productInfoDao.updateProductInfo(productInfoEntity);
} }
@Transactional(rollbackFor = Exception.class)
@Override
public boolean updateCplx(ProductInfoEntity productInfoEntity) {
return productInfoDao.updateCplx(productInfoEntity);
}
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override @Override
public boolean deleteById(String id) { public boolean deleteById(String id) {

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

@ -67,4 +67,12 @@ public class UdiCompanyServiceImpl implements UdiCompanyService {
List<String> result = udiCompanyDao.searchByName(name); List<String> result = udiCompanyDao.searchByName(name);
return ResultVOUtils.success(result); 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);
}
} }

@ -39,9 +39,9 @@ public class AsyncDownloadTask {
@Async @Async
public void downloadByDi(String primaryDeviceId) { public void downloadByDi(String primaryDeviceId) {
DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService);
TokenEntity token = downloadDeviceHelper.getToken(); String token = deviceDownloadService.getToken();
DownloadDiRequest downloadDiRequest = new DownloadDiRequest(); DownloadDiRequest downloadDiRequest = new DownloadDiRequest();
downloadDiRequest.setAccessToken(token.getAccessToken()); downloadDiRequest.setAccessToken(token);
downloadDiRequest.setPrimaryDeviceId(primaryDeviceId); downloadDiRequest.setPrimaryDeviceId(primaryDeviceId);
downloadDeviceHelper.downloadBydi(downloadDiRequest, deviceService, productInfoService); downloadDeviceHelper.downloadBydi(downloadDiRequest, deviceService, productInfoService);
} }
@ -54,6 +54,28 @@ 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 , 手动下载 //按天下载UDI , 手动下载
@Async @Async
public void downloadByDay(String day) { public void downloadByDay(String day) {

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

@ -49,6 +49,8 @@ public class UdiTransferUtils {
productInfoEntity.setCphhhbh(deviceEntity.getCphhhbh()); productInfoEntity.setCphhhbh(deviceEntity.getCphhhbh());
productInfoEntity.setCpms(deviceEntity.getCpms()); productInfoEntity.setCpms(deviceEntity.getCpms());
productInfoEntity.setCpbsbmtxmc(deviceEntity.getCpbsbmtxmc()); productInfoEntity.setCpbsbmtxmc(deviceEntity.getCpbsbmtxmc());
productInfoEntity.setCplx(deviceEntity.getCplx());
productInfoEntity.setHchzsb(deviceEntity.getHchzsb());
productInfoEntity.setVersionNumber(Integer.parseInt(deviceEntity.getVersionnumber())); productInfoEntity.setVersionNumber(Integer.parseInt(deviceEntity.getVersionnumber()));
if (deviceEntity.getSydycpbs() != null && !deviceEntity.getSydycpbs().equals("")) { if (deviceEntity.getSydycpbs() != null && !deviceEntity.getSydycpbs().equals("")) {
@ -179,9 +181,6 @@ public class UdiTransferUtils {
update.setUpdateTime(new Date()); update.setUpdateTime(new Date());
productInfoService.updateProductInfo(update); productInfoService.updateProductInfo(update);
} }
// updateEntity.setIsNewest(true);
// updateEntity.setUpdateTime(new Date());
// productInfoService.updateProductInfo(updateEntity);
} }
//更新厂家信息, //更新厂家信息,
@ -191,6 +190,7 @@ public class UdiTransferUtils {
if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) { if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) {
UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity(); UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity();
udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm()); udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm());
udiCompanyEntity.setUpdateTime(new Date());
udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc()); udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc());
udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc()); udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc());
List<Contactlist> contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey()); List<Contactlist> contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey());

@ -2,7 +2,7 @@ package com.glxp.udidl.admin.util;
import java.util.Date; import java.util.Date;
public class DateUtils extends cn.hutool.core.date.DateUtil{ public class DateUtils extends cn.hutool.core.date.DateUtil {
/** /**
* *
*/ */

@ -2,19 +2,19 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udidl.admin.dao.udi.ProductInfoMapper"> <mapper namespace="com.glxp.udidl.admin.dao.udi.ProductInfoMapper">
<select id="filterProductInfo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterProductInfo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
SELECT * FROM productinfo SELECT *
FROM productinfo
<where> <where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%') AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
@ -23,39 +23,41 @@
AND deviceRecordKey = #{deviceRecordKey} AND deviceRecordKey = #{deviceRecordKey}
</if> </if>
<if test="ggxh != '' and ggxh != null"> <if test="ggxh != '' and ggxh != null">
AND ggxh LIKE concat(#{ggxh},'%') AND ggxh LIKE concat(#{ggxh}, '%')
</if> </if>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="updateTime!=null and updateTime!=''"> <if test="updateTime != null and updateTime != ''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if> </if>
</where> </where>
</select> </select>
<select id="filterCpmctymc" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterCpmctymc" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select * from productinfo select *
from productinfo
<where> <where>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
<if test="updateTime!=null and updateTime!=''"> <if test="updateTime != null and updateTime != ''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if> </if>
</where> </where>
GROUP BY cpmctymc GROUP BY cpmctymc
@ -64,23 +66,26 @@
<select id="filterUdiByTyshxydm" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterUdiByTyshxydm" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
SELECT * FROM productinfo SELECT *
FROM productinfo
<where> <where>
diType = 1 diType = 1
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
<if test="updateTime!=null and updateTime!=''"> <if test="updateTime != null and updateTime != ''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if> </if>
</where> </where>
GROUP BY nameCode GROUP BY nameCode
@ -88,8 +93,9 @@
<select id="selectAllByUuid" parameterType="java.util.List" <select id="selectAllByUuid" parameterType="java.util.List"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select * from productinfo where select *
uuid in ( from productinfo where
uuid in (
<foreach collection="ids" item="item" index="index" <foreach collection="ids" item="item" index="index"
separator=","> separator=",">
#{item} #{item}
@ -107,27 +113,27 @@
<!-- CHAR_LENGTH(nameCode) <![CDATA[ >= ]]> 14--> <!-- CHAR_LENGTH(nameCode) <![CDATA[ >= ]]> 14-->
<select id="filterUdiByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterUdiByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select p.* from productinfo p
select p.* from productinfo p INNER JOIN INNER JOIN
(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo (select deviceRecordKey, max(versionNumber) versionNumber
from productinfo
<where> <where>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
</where> </where>
GROUP BY deviceRecordKey) GROUP BY deviceRecordKey)
a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber
<where> <where>
<if test="diType != '' and diType != null"> <if test="diType != '' and diType != null">
AND diType = #{diType} AND diType = #{diType}
@ -138,17 +144,17 @@
<select id="filterUdiByNewest" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterUdiByNewest" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
SELECT *
SELECT * FROM productinfo FROM productinfo
<where> <where>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
@ -161,64 +167,67 @@
<select id="filterUuidByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterUuidByCreditNo" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="java.lang.String"> resultType="java.lang.String">
select p.uuid from productinfo p
select p.uuid from productinfo p INNER JOIN INNER JOIN
(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo (select deviceRecordKey, max(versionNumber) versionNumber
from productinfo
<where> <where>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm = #{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
</where> </where>
GROUP BY deviceRecordKey) GROUP BY deviceRecordKey)
a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber
group by uuid group by uuid
</select> </select>
<select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select *
select * from productinfo from productinfo
<where> <where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc= #{ylqxzcrbarmc} AND ylqxzcrbarmc = #{ylqxzcrbarmc}
</if> </if>
<if test="ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null"> <if test="ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat('%',#{cpmctymc},'%') AND cpmctymc LIKE concat('%', #{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
<if test="ggxh != '' and ggxh != null"> <if test="ggxh != '' and ggxh != null">
AND ggxh LIKE concat('%',#{ggxh},'%') AND ggxh LIKE concat('%', #{ggxh}, '%')
</if> </if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null"> <if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
AND zczbhhzbapzbh LIKE concat('%',#{zczbhhzbapzbh},'%') AND zczbhhzbapzbh LIKE concat('%', #{zczbhhzbapzbh}, '%')
</if> </if>
<if test="deviceRecordKey != '' and deviceRecordKey != null"> <if test="deviceRecordKey != '' and deviceRecordKey != null">
AND deviceRecordKey = #{deviceRecordKey} AND deviceRecordKey = #{deviceRecordKey}
</if> </if>
<if test="updateTime!=null and updateTime!=''"> <if test="updateTime != null and updateTime != ''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if> </if>
<if test="isNewest != null and isNewest!=''"> <if test="isNewest != null and isNewest != ''">
AND isNewest = #{isNewest} AND isNewest = #{isNewest}
</if> </if>
<if test="diType != '' and diType != null"> <if test="diType != '' and diType != null">
@ -226,34 +235,78 @@
</if> </if>
</where> </where>
</select> </select>
<select id="selectByUpdateTime" <select id="selectByUpdateTime"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
select * from productinfo where select *
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{startDate}, '%Y-%m-%d %H:%i:%S') ]]> from productinfo
where
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{startDate}, '%Y-%m-%d %H:%i:%S') ]]>
and and
<![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')<= DATE_FORMAT(#{endDate}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[ DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') <= DATE_FORMAT(#{endDate}, '%Y-%m-%d %H:%i:%S')
]]>
</select> </select>
<!--<select id="filterUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"-->
<!--resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">-->
<!--&#45;&#45; GROUP BY deviceRecordKey-->
<!--select p.* from productinfo p INNER JOIN-->
<!--(select deviceRecordKey ,max(versionNumber) versionNumber from productinfo-->
<!--<where>-->
<!--<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">-->
<!--AND ylqxzcrbarmc= #{ylqxzcrbarmc}-->
<!--</if>-->
<!--<if test="ylqxzcrbarmc == '' and ylqxzcrbarmc == null and cpmctymc != '' and cpmctymc != null">-->
<!--AND cpmctymc LIKE concat(#{cpmctymc},'%')-->
<!--</if>-->
<!--<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null and cpmctymc != '' and cpmctymc != null">-->
<!--AND cpmctymc LIKE concat('%',#{cpmctymc},'%')-->
<!--</if>-->
<!--<if test="nameCode != '' and nameCode != null">-->
<!--AND nameCode LIKE concat(#{nameCode},'%')-->
<!--</if>-->
<!--<if test="uuid != '' and uuid != null">-->
<!--AND uuid = #{uuid}-->
<!--</if>-->
<!--<if test="ggxh != '' and ggxh != null">-->
<!--AND ggxh LIKE concat('%',#{ggxh},'%')-->
<!--</if>-->
<!--<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">-->
<!--AND zczbhhzbapzbh LIKE concat('%',#{zczbhhzbapzbh},'%')-->
<!--</if>-->
<!--<if test="deviceRecordKey != '' and deviceRecordKey != null">-->
<!--AND deviceRecordKey = #{deviceRecordKey}-->
<!--</if>-->
<!--<if test="updateTime!=null and updateTime!=''">-->
<!--<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]>-->
<!--</if>-->
<!--</where>-->
<!--GROUP BY deviceRecordKey)-->
<!--a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber-->
<!--</select>-->
<select id="syncDlUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest" <select id="syncDlUdi" parameterType="com.glxp.udidl.admin.req.ProductInfoFilterRequest"
resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
SELECT *
SELECT * FROM productinfo FROM productinfo
<where> <where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%') AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
</if> </if>
<if test="cpmctymc != '' and cpmctymc != null"> <if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%') AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if> </if>
<if test="nameCode != '' and nameCode != null"> <if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%') AND nameCode LIKE concat(#{nameCode}, '%')
</if> </if>
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
<if test="ggxh != '' and ggxh != null"> <if test="ggxh != '' and ggxh != null">
AND ggxh LIKE concat('%',#{ggxh},'%') AND ggxh LIKE concat('%', #{ggxh}, '%')
</if> </if>
<if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null"> <if test="zczbhhzbapzbh != '' and zczbhhzbapzbh != null">
AND zczbhhzbapzbh = #{zczbhhzbapzbh} AND zczbhhzbapzbh = #{zczbhhzbapzbh}
@ -261,8 +314,10 @@
<if test="deviceRecordKey != '' and deviceRecordKey != null"> <if test="deviceRecordKey != '' and deviceRecordKey != null">
AND deviceRecordKey = #{deviceRecordKey} AND deviceRecordKey = #{deviceRecordKey}
</if> </if>
<if test="updateTime!=null and updateTime!=''"> <if test="updateTime != null and updateTime != ''">
<![CDATA[ and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S')>= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S') ]]> <![CDATA[
and DATE_FORMAT(updateTime, '%Y-%m-%d %H:%i:%S') >= DATE_FORMAT(#{updateTime}, '%Y-%m-%d %H:%i:%S')
]]>
</if> </if>
</where> </where>
limit #{page},#{limit} limit #{page},#{limit}
@ -271,54 +326,51 @@
<insert id="insertProductInfo" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> <insert id="insertProductInfo" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
REPLACE REPLACE
INTO productinfo INTO productinfo
( (nameCode, packRatio, packLevel, bhxjsl,
nameCode,packRatio,packLevel,bhxjsl, bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, thirdProductNo, addType, deviceRecordKey, isUseDy,
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,thirdProductNo,addType,deviceRecordKey,isUseDy,thirdProductName, thirdProductName,
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
,diType,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq, versionNumber
ybbm,spmc,cphhhbh,cpms,cpbsbmtxmc,isNewest,updateTime , diType, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq,
) ybbm, spmc, cphhhbh, cpms, cpbsbmtxmc, isNewest, updateTime, hchzsb, cplx)
values values (#{nameCode},
( #{packRatio},
#{nameCode}, #{packLevel},
#{packRatio}, #{bhxjsl},
#{packLevel}, #{bhzxxsbzsl},
#{bhxjsl}, #{zxxsbzbhsydysl},
#{bhzxxsbzsl}, #{bhxjcpbm},
#{zxxsbzbhsydysl}, #{bzcj},
#{bhxjcpbm}, #{thirdProductNo},
#{bzcj}, #{addType},
#{thirdProductNo}, #{deviceRecordKey},
#{addType}, #{isUseDy},
#{deviceRecordKey}, #{thirdProductName},
#{isUseDy}, #{cpmctymc},
#{thirdProductName}, #{cplb},
#{cpmctymc}, #{flbm},
#{cplb}, #{ggxh},
#{flbm}, #{qxlb},
#{ggxh}, #{tyshxydm},
#{qxlb}, #{ylqxzcrbarmc},
#{tyshxydm}, #{zczbhhzbapzbh},
#{ylqxzcrbarmc}, #{ylqxzcrbarywmc},
#{zczbhhzbapzbh}, #{uuid},
#{ylqxzcrbarywmc}, #{sjcpbm},
#{uuid}, #{versionNumber},
#{sjcpbm}, #{diType},
#{versionNumber}, #{scbssfbhph},
#{diType}, #{scbssfbhxlh},
#{scbssfbhph}, #{scbssfbhscrq},
#{scbssfbhxlh}, #{scbssfbhsxrq},
#{scbssfbhscrq}, #{ybbm},
#{scbssfbhsxrq}, #{spmc},
#{ybbm}, #{cphhhbh},
#{spmc}, #{cpms},
#{cphhhbh}, #{cpbsbmtxmc},
#{cpms}, #{isNewest},
#{cpbsbmtxmc}, #{updateTime}, #{hchzsb}, #{cplx})
#{isNewest},
#{updateTime}
)
</insert> </insert>
<delete id="deleteById" parameterType="Map"> <delete id="deleteById" parameterType="Map">
@ -328,7 +380,8 @@
</delete> </delete>
<delete id="deleteAll" parameterType="java.util.List"> <delete id="deleteAll" parameterType="java.util.List">
DELETE FROM productinfo WHERE thirdProductNo in DELETE
FROM productinfo WHERE thirdProductNo in
<foreach collection="ids" item="item" open="(" separator="," close=")"> <foreach collection="ids" item="item" open="(" separator="," close=")">
#{item} #{item}
</foreach> </foreach>
@ -337,33 +390,93 @@
<update id="updateProductInfo" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> <update id="updateProductInfo" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
UPDATE productinfo UPDATE productinfo
<set> <set>
<if test="nameCode != null">nameCode=#{nameCode},</if> <if test="nameCode != null">
<if test="packRatio != null">packRatio=#{packRatio},</if> nameCode=#{nameCode},
<if test="packLevel != null">packLevel=#{packLevel},</if> </if>
<if test="bhxjsl != null">bhxjsl=#{bhxjsl},</if> <if test="packRatio != null">
<if test="bhzxxsbzsl != null">bhzxxsbzsl=#{bhzxxsbzsl},</if> packRatio=#{packRatio},
<if test="zxxsbzbhsydysl != null">zxxsbzbhsydysl=#{zxxsbzbhsydysl},</if> </if>
<if test="bhxjcpbm != null">bhxjcpbm=#{bhxjcpbm},</if> <if test="packLevel != null">
<if test="bzcj != null">bzcj=#{bzcj},</if> packLevel=#{packLevel},
<if test="thirdProductNo != null">thirdProductNo=#{thirdProductNo},</if> </if>
<if test="addType != null">addType=#{addType},</if> <if test="bhxjsl != null">
<if test="deviceRecordKey != null">deviceRecordKey=#{deviceRecordKey},</if> bhxjsl=#{bhxjsl},
<if test="isUseDy != null">isUseDy=#{isUseDy},</if> </if>
<if test="thirdProductName != null">thirdProductName=#{thirdProductName},</if> <if test="bhzxxsbzsl != null">
<if test="cpmctymc != null">cpmctymc=#{cpmctymc},</if> bhzxxsbzsl=#{bhzxxsbzsl},
<if test="cplb != null">cplb=#{cplb},</if> </if>
<if test="flbm != null">flbm=#{flbm},</if> <if test="zxxsbzbhsydysl != null">
<if test="ggxh != null">ggxh=#{ggxh},</if> zxxsbzbhsydysl=#{zxxsbzbhsydysl},
<if test="qxlb != null">qxlb=#{qxlb},</if> </if>
<if test="tyshxydm != null">tyshxydm=#{tyshxydm},</if> <if test="bhxjcpbm != null">
<if test="ylqxzcrbarmc != null">ylqxzcrbarmc=#{ylqxzcrbarmc},</if> bhxjcpbm=#{bhxjcpbm},
<if test="ylqxzcrbarywmc != null">ylqxzcrbarywmc=#{ylqxzcrbarywmc},</if> </if>
<if test="uuid != null">uuid=#{uuid},</if> <if test="bzcj != null">
<if test="sjcpbm != null">sjcpbm=#{sjcpbm},</if> bzcj=#{bzcj},
<if test="versionNumber != null">versionNumber=#{versionNumber},</if> </if>
<if test="diType != null">diType=#{diType},</if> <if test="thirdProductNo != null">
<if test="isNewest != null">isNewest=#{isNewest},</if> thirdProductNo=#{thirdProductNo},
<if test="updateTime != null">updateTime=#{updateTime},</if> </if>
<if test="addType != null">
addType=#{addType},
</if>
<if test="deviceRecordKey != null">
deviceRecordKey=#{deviceRecordKey},
</if>
<if test="isUseDy != null">
isUseDy=#{isUseDy},
</if>
<if test="thirdProductName != null">
thirdProductName=#{thirdProductName},
</if>
<if test="cpmctymc != null">
cpmctymc=#{cpmctymc},
</if>
<if test="cplb != null">
cplb=#{cplb},
</if>
<if test="flbm != null">
flbm=#{flbm},
</if>
<if test="ggxh != null">
ggxh=#{ggxh},
</if>
<if test="qxlb != null">
qxlb=#{qxlb},
</if>
<if test="tyshxydm != null">
tyshxydm=#{tyshxydm},
</if>
<if test="ylqxzcrbarmc != null">
ylqxzcrbarmc=#{ylqxzcrbarmc},
</if>
<if test="ylqxzcrbarywmc != null">
ylqxzcrbarywmc=#{ylqxzcrbarywmc},
</if>
<if test="uuid != null">
uuid=#{uuid},
</if>
<if test="sjcpbm != null">
sjcpbm=#{sjcpbm},
</if>
<if test="versionNumber != null">
versionNumber=#{versionNumber},
</if>
<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> </set>
WHERE id = #{id} WHERE id = #{id}
</update> </update>
@ -371,17 +484,45 @@
<update id="updateProductByUuid" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> <update id="updateProductByUuid" parameterType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity">
UPDATE productinfo UPDATE productinfo
<set> <set>
<if test="scbssfbhph != null">scbssfbhph=#{scbssfbhph},</if> <if test="scbssfbhph != null">
<if test="scbssfbhxlh != null">scbssfbhxlh=#{scbssfbhxlh},</if> scbssfbhph=#{scbssfbhph},
<if test="scbssfbhscrq != null">scbssfbhscrq=#{scbssfbhscrq},</if> </if>
<if test="scbssfbhsxrq != null">scbssfbhsxrq=#{scbssfbhsxrq},</if> <if test="scbssfbhxlh != null">
<if test="ybbm != null">ybbm=#{ybbm},</if> scbssfbhxlh=#{scbssfbhxlh},
<if test="spmc != null">spmc=#{spmc},</if> </if>
<if test="cphhhbh != null">cphhhbh=#{cphhhbh},</if> <if test="scbssfbhscrq != null">
<if test="cpms != null">cpms=#{cpms},</if> scbssfbhscrq=#{scbssfbhscrq},
<if test="cpbsbmtxmc != null">cpbsbmtxmc=#{cpbsbmtxmc},</if> </if>
<if test="isNewest != null">isNewest=#{isNewest},</if> <if test="scbssfbhsxrq != null">
<if test="updateTime != null">updateTime=#{updateTime},</if> scbssfbhsxrq=#{scbssfbhsxrq},
</if>
<if test="ybbm != null">
ybbm=#{ybbm},
</if>
<if test="spmc != null">
spmc=#{spmc},
</if>
<if test="cphhhbh != null">
cphhhbh=#{cphhhbh},
</if>
<if test="cpms != null">
cpms=#{cpms},
</if>
<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> </set>
WHERE uuid = #{uuid} WHERE uuid = #{uuid}
</update> </update>
@ -391,16 +532,33 @@
<select id="findAllUuids" parameterType="com.glxp.udidl.admin.req.ListPageRequest" resultType="java.lang.String"> <select id="findAllUuids" parameterType="com.glxp.udidl.admin.req.ListPageRequest" resultType="java.lang.String">
SELECT uuid SELECT uuid
from device from device
group by uuid limit #{page}, #{limit} group by uuid
limit #{page}, #{limit}
</select> </select>
<select id="findAllTyshxyh" resultType="java.lang.String"> <select id="findAllTyshxyh" resultType="java.lang.String">
SELECT tyshxydm SELECT tyshxydm
from productinfo from productinfo
group by tyshxydm group by tyshxydm
</select> </select>
<select id="selectByDeviceRecordKey" resultType="com.glxp.udidl.admin.dto.device.ProductDetailModel"
<select id="selectByDeviceRecordKey" resultType="com.glxp.udidl.admin.dto.device.ProductDetailModel" parameterType="java.lang.String"> parameterType="java.lang.String">
select nameCode,cpmctymc,packLevel,bzcj from productinfo where isNewest=1 and deviceRecordKey=#{key} select nameCode, cpmctymc, packLevel, bzcj
from productinfo
where isNewest = 1
and deviceRecordKey = #{key}
</select> </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> </mapper>

@ -2,88 +2,107 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udidl.admin.dao.udi.UdiCompanyMapper"> <mapper namespace="com.glxp.udidl.admin.dao.udi.UdiCompanyMapper">
<select id="selectAllTyshxyh" <select id="selectAllTyshxyh"
resultType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> 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 GROUP BY tyshxydm
</select> </select>
<select id="selectContactBykey" parameterType="Map" <select id="selectContactBykey" parameterType="Map"
resultType="com.glxp.udidl.admin.entity.udid.Contactlist"> resultType="com.glxp.udidl.admin.entity.udid.Contactlist">
SELECT qylxrdh,qylxryx,qylxrcz from contactlist SELECT qylxrdh, qylxryx, qylxrcz
WHERE deviceRecordKey = #{deviceRecordKey} from contactlist
WHERE deviceRecordKey = #{deviceRecordKey}
</select> </select>
<select id="filterUdiCompany" <select id="filterUdiCompany"
parameterType="com.glxp.udidl.admin.req.UdiCompanyRequest" parameterType="com.glxp.udidl.admin.req.UdiCompanyRequest"
resultType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> resultType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
SELECT * FROM udicompany SELECT *
FROM udicompany
<where> <where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null"> <if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc LIKE concat('%',#{ylqxzcrbarmc},'%') AND ylqxzcrbarmc LIKE concat('%', #{ylqxzcrbarmc}, '%')
</if> </if>
<if test="tyshxydm != '' and tyshxydm != null"> <if test="tyshxydm != '' and tyshxydm != null">
AND tyshxydm =#{tyshxydm} AND tyshxydm = #{tyshxydm}
</if> </if>
<if test="provinceCode != '' and provinceCode != null"> <if test="provinceCode != '' and provinceCode != null">
AND SUBSTRING(tyshxydm,3,2) = #{provinceCode} AND SUBSTRING(tyshxydm, 3, 2) = #{provinceCode}
</if> </if>
<if test="cityCode != '' and cityCode != null"> <if test="cityCode != '' and cityCode != null">
AND SUBSTRING(tyshxydm,3,4) = #{cityCode} AND SUBSTRING(tyshxydm, 3, 4) = #{cityCode}
</if> </if>
<if test="areaCode != '' and areaCode != null"> <if test="areaCode != '' and areaCode != null">
AND SUBSTRING(tyshxydm,3,6) = #{areaCode} AND SUBSTRING(tyshxydm, 3, 6) = #{areaCode}
</if> </if>
</where> </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>
<select id="searchByName" parameterType="java.lang.String" resultType="java.lang.String"> <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> </select>
<insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> <insert id="insertUdiCompany" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
REPLACE INTO udicompany REPLACE
( INTO udicompany
tyshxydm,ylqxzcrbarmc,ylqxzcrbarywmc,qylxrdh, (tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh,
qylxrcz,qylxryx qylxrcz, qylxryx, updateTime)
) values (#{tyshxydm},
values #{ylqxzcrbarmc},
( #{ylqxzcrbarywmc},
#{tyshxydm}, #{qylxrdh},
#{ylqxzcrbarmc}, #{qylxrcz},
#{ylqxzcrbarywmc}, #{qylxryx},
#{qylxrdh}, #{updateTime})
#{qylxrcz},
#{qylxryx}
)
</insert> </insert>
<insert id="insertUdiCompanys" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> <insert id="insertUdiCompanys" keyProperty="id" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
replace INTO udicompany( replace INTO udicompany(tyshxydm, ylqxzcrbarmc, ylqxzcrbarywmc, qylxrdh,
tyshxydm,ylqxzcrbarmc,ylqxzcrbarywmc,qylxrdh, qylxrcz, qylxryx, updateTime)
qylxrcz,qylxryx) values
values
<foreach collection="udiCompanyEntities" item="item" index="index" <foreach collection="udiCompanyEntities" item="item" index="index"
separator=","> separator=",">
(#{item.tyshxydm},
( #{item.ylqxzcrbarmc},
#{item.tyshxydm}, #{item.ylqxzcrbarywmc},
#{item.ylqxzcrbarmc}, #{item.qylxrdh},
#{item.ylqxzcrbarywmc}, #{item.qylxrcz},
#{item.qylxrdh}, #{item.qylxryx}),#{item.updateTime}
#{item.qylxrcz},
#{item.qylxryx})
</foreach> </foreach>
</insert> </insert>
<delete id="deleteById" parameterType="Map"> <delete id="deleteById" parameterType="Map">
DELETE FROM udicompany WHERE id = #{id} DELETE
FROM udicompany
WHERE id = #{id}
</delete> </delete>
<delete id="deleteAll" parameterType="java.util.List"> <delete id="deleteAll" parameterType="java.util.List">
DELETE FROM udicompany WHERE id in DELETE
FROM udicompany WHERE id in
<foreach collection="ids" item="item" open="(" separator="," close=")"> <foreach collection="ids" item="item" open="(" separator="," close=")">
#{item} #{item}
</foreach> </foreach>
@ -92,12 +111,27 @@
<update id="updateUdiCompany" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity"> <update id="updateUdiCompany" parameterType="com.glxp.udidl.admin.entity.udi.UdiCompanyEntity">
UPDATE udicompany UPDATE udicompany
<set> <set>
<if test="tyshxydm != null">tyshxydm=#{tyshxydm},</if> <if test="tyshxydm != null">
<if test="ylqxzcrbarmc != null">ylqxzcrbarmc=#{ylqxzcrbarmc},</if> tyshxydm=#{tyshxydm},
<if test="ylqxzcrbarywmc != null">ylqxzcrbarywmc=#{ylqxzcrbarywmc},</if> </if>
<if test="qylxrdh != null">qylxrdh=#{qylxrdh},</if> <if test="ylqxzcrbarmc != null">
<if test="qylxrcz != null">qylxrcz=#{qylxrcz},</if> ylqxzcrbarmc=#{ylqxzcrbarmc},
<if test="qylxryx != null">qylxryx=#{qylxryx},</if> </if>
<if test="ylqxzcrbarywmc != null">
ylqxzcrbarywmc=#{ylqxzcrbarywmc},
</if>
<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> </set>
WHERE id = #{id} WHERE id = #{id}
</update> </update>

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