From 52ca13d28814317936137ee121cbe70b75e80acc Mon Sep 17 00:00:00 2001
From: anthonyywj2 <353682448@qq.com>
Date: Sun, 19 Jun 2022 16:09:55 +0800
Subject: [PATCH] =?UTF-8?q?id=E8=87=AA=E5=A2=9E=E9=95=BF=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=8Cbug=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../udidl/admin/controller/device/DownloadDeviceHelper.java | 1 +
.../udidl/admin/service/dataSync/DeviceDownloadService.java | 4 +++-
src/main/resources/application-dev.yml | 2 +-
src/main/resources/application-pro.yml | 2 +-
src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml | 4 ++--
.../resources/mybatis/mapper/udid/DeviceclinicalMapper.xml | 4 ++--
.../resources/mybatis/mapper/udid/DevicedownloadMapper.xml | 4 ++--
.../resources/mybatis/mapper/udid/DevicepackageMapper.xml | 4 ++--
.../resources/mybatis/mapper/udid/DevicestorageMapper.xml | 4 ++--
.../mybatis/mapper/udplat/UdplatGoodsMatchMapper.xml | 4 ++--
src/main/resources/mybatis/mapper/udplat/UdplatLogMapper.xml | 4 ++--
11 files changed, 20 insertions(+), 17 deletions(-)
diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java b/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java
index 3cd0ce5..6bd7b14 100644
--- a/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java
+++ b/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java
@@ -54,6 +54,7 @@ public class DownloadDeviceHelper {
TokenRequest tokenRequest = new TokenRequest();
tokenRequest.setAppId(appId);
tokenRequest.setAppSecret(appSecret);
+ tokenRequest.setTyshxydm(companyEntity.getTyshxydm());
String response = HttpClient.post("token/get", tokenRequest);
TokenEntity tokenEntity = (TokenEntity) JSONObject.parseObject(response, TokenEntity.class);
return tokenEntity;
diff --git a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java
index cc489f4..25d4369 100644
--- a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java
+++ b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java
@@ -1,6 +1,7 @@
package com.glxp.udidl.admin.service.dataSync;
+import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.entity.info.CompanyEntity;
@@ -46,6 +47,7 @@ public class DeviceDownloadService {
CompanyEntity companyEntity;
+
String url = "sharing/get";
@Autowired
@@ -69,7 +71,7 @@ public class DeviceDownloadService {
* @return
*/
public String getToken() {
- if (token.isEmpty()) {
+ if (StrUtil.isEmpty(token)) {
companyEntity = companyService.findCompany();
TokenRequest tokenRequest = new TokenRequest();
tokenRequest.setAppId(companyEntity.getAppId());
diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml
index 54ddd84..2d5b8f9 100644
--- a/src/main/resources/application-dev.yml
+++ b/src/main/resources/application-dev.yml
@@ -4,7 +4,7 @@ spring:
matching-strategy: ant_path_matcher
datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
- url: jdbc:p6spy:mysql://192.168.235.137:33306/udidl?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
+ url: jdbc:p6spy:mysql://127.0.0.1:3306/udidl_test?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: root
servlet:
diff --git a/src/main/resources/application-pro.yml b/src/main/resources/application-pro.yml
index 87eeb95..1920525 100644
--- a/src/main/resources/application-pro.yml
+++ b/src/main/resources/application-pro.yml
@@ -3,7 +3,7 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/udidl_test?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
username: root
- password: mysql@2020
+ password: 123456
servlet:
multipart:
max-file-size: 100MB
diff --git a/src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml b/src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml
index 797ea9b..dc932e8 100644
--- a/src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml
+++ b/src/main/resources/mybatis/mapper/udid/ContactlistMapper.xml
@@ -104,10 +104,10 @@
- insert into contactlist (id, deviceRecordKey, qylxrcz,
+ insert into contactlist ( deviceRecordKey, qylxrcz,
qylxrdh, qylxryx, uuid
)
- values (#{id,jdbcType=INTEGER}, #{devicerecordkey,jdbcType=VARCHAR}, #{qylxrcz,jdbcType=VARCHAR},
+ values ( #{devicerecordkey,jdbcType=VARCHAR}, #{qylxrcz,jdbcType=VARCHAR},
#{qylxrdh,jdbcType=VARCHAR}, #{qylxryx,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR}
)
diff --git a/src/main/resources/mybatis/mapper/udid/DeviceclinicalMapper.xml b/src/main/resources/mybatis/mapper/udid/DeviceclinicalMapper.xml
index 028b0e0..fbca256 100644
--- a/src/main/resources/mybatis/mapper/udid/DeviceclinicalMapper.xml
+++ b/src/main/resources/mybatis/mapper/udid/DeviceclinicalMapper.xml
@@ -101,9 +101,9 @@
- insert into deviceclinical (id, deviceRecordKey, lcsycclx,
+ insert into deviceclinical ( deviceRecordKey, lcsycclx,
ccz, ccdw, uuid)
- values (#{id,jdbcType=INTEGER}, #{devicerecordkey,jdbcType=VARCHAR}, #{lcsycclx,jdbcType=VARCHAR},
+ values ( #{devicerecordkey,jdbcType=VARCHAR}, #{lcsycclx,jdbcType=VARCHAR},
#{ccz,jdbcType=VARCHAR}, #{ccdw,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
diff --git a/src/main/resources/mybatis/mapper/udid/DevicedownloadMapper.xml b/src/main/resources/mybatis/mapper/udid/DevicedownloadMapper.xml
index 60b5dd6..03637e9 100644
--- a/src/main/resources/mybatis/mapper/udid/DevicedownloadMapper.xml
+++ b/src/main/resources/mybatis/mapper/udid/DevicedownloadMapper.xml
@@ -107,11 +107,11 @@
- insert into devicedownload (id, updateday, updatemonth,
+ insert into devicedownload (updateday, updatemonth,
dayindex, monthindex, daytotal,
monthtotal, alltotal, allindex,
isdownload, startTime)
- values (#{id,jdbcType=VARCHAR}, #{updateday,jdbcType=VARCHAR}, #{updatemonth,jdbcType=VARCHAR},
+ values ( #{updateday,jdbcType=VARCHAR}, #{updatemonth,jdbcType=VARCHAR},
#{dayindex,jdbcType=INTEGER}, #{monthindex,jdbcType=INTEGER}, #{daytotal,jdbcType=INTEGER},
#{monthtotal,jdbcType=INTEGER}, #{alltotal,jdbcType=INTEGER}, #{allindex,jdbcType=INTEGER},
#{isdownload,jdbcType=INTEGER}, #{starttime,jdbcType=VARCHAR})
diff --git a/src/main/resources/mybatis/mapper/udid/DevicepackageMapper.xml b/src/main/resources/mybatis/mapper/udid/DevicepackageMapper.xml
index bb28f67..4271df8 100644
--- a/src/main/resources/mybatis/mapper/udid/DevicepackageMapper.xml
+++ b/src/main/resources/mybatis/mapper/udid/DevicepackageMapper.xml
@@ -102,10 +102,10 @@
- insert into devicepackage (id, bzcpbs, bznhxyjbzcpbs,
+ insert into devicepackage (bzcpbs, bznhxyjbzcpbs,
cpbzjb, bznhxyjcpbssl, deviceRecordKey,
uuid)
- values (#{id,jdbcType=INTEGER}, #{bzcpbs,jdbcType=VARCHAR}, #{bznhxyjbzcpbs,jdbcType=VARCHAR},
+ values ( #{bzcpbs,jdbcType=VARCHAR}, #{bznhxyjbzcpbs,jdbcType=VARCHAR},
#{cpbzjb,jdbcType=VARCHAR}, #{bznhxyjcpbssl,jdbcType=INTEGER}, #{devicerecordkey,jdbcType=VARCHAR},
#{uuid,jdbcType=VARCHAR})
diff --git a/src/main/resources/mybatis/mapper/udid/DevicestorageMapper.xml b/src/main/resources/mybatis/mapper/udid/DevicestorageMapper.xml
index 87b95c4..b175a3c 100644
--- a/src/main/resources/mybatis/mapper/udid/DevicestorageMapper.xml
+++ b/src/main/resources/mybatis/mapper/udid/DevicestorageMapper.xml
@@ -102,10 +102,10 @@
- insert into devicestorage (id, deviceRecordKey, cchcztj,
+ insert into devicestorage ( deviceRecordKey, cchcztj,
jldw, zdz, zgz, uuid
)
- values (#{id,jdbcType=INTEGER}, #{devicerecordkey,jdbcType=VARCHAR}, #{cchcztj,jdbcType=VARCHAR},
+ values ( #{devicerecordkey,jdbcType=VARCHAR}, #{cchcztj,jdbcType=VARCHAR},
#{jldw,jdbcType=VARCHAR}, #{zdz,jdbcType=VARCHAR}, #{zgz,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR}
)
diff --git a/src/main/resources/mybatis/mapper/udplat/UdplatGoodsMatchMapper.xml b/src/main/resources/mybatis/mapper/udplat/UdplatGoodsMatchMapper.xml
index 4cb7ed5..2f296a8 100644
--- a/src/main/resources/mybatis/mapper/udplat/UdplatGoodsMatchMapper.xml
+++ b/src/main/resources/mybatis/mapper/udplat/UdplatGoodsMatchMapper.xml
@@ -15,9 +15,9 @@
where id = #{id,jdbcType=INTEGER}
- insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
+ insert into udplat_goods_match ( deviceRecordKey, deliveryGoodsId,
medicalCode, createTime)
- values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
+ values ( #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
diff --git a/src/main/resources/mybatis/mapper/udplat/UdplatLogMapper.xml b/src/main/resources/mybatis/mapper/udplat/UdplatLogMapper.xml
index 2da6acf..a56ab3b 100644
--- a/src/main/resources/mybatis/mapper/udplat/UdplatLogMapper.xml
+++ b/src/main/resources/mybatis/mapper/udplat/UdplatLogMapper.xml
@@ -17,11 +17,11 @@
where id = #{id,jdbcType=INTEGER}
- insert into udplat_log (id, type, downloadType,
+ insert into udplat_log ( type, downloadType,
tbName, actionDate, totalCount,
msg, createTime, content
)
- values (#{id,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}, #{downloadType,jdbcType=VARCHAR},
+ values ( #{type,jdbcType=VARCHAR}, #{downloadType,jdbcType=VARCHAR},
#{tbName,jdbcType=VARCHAR}, #{actionDate,jdbcType=TIMESTAMP}, #{totalCount,jdbcType=INTEGER},
#{msg,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{content,jdbcType=LONGVARCHAR}
)