From 64c2c3c3fa0aa61426802228a8971ad9d88e3a05 Mon Sep 17 00:00:00 2001 From: Stormeye Wu Date: Mon, 10 Jun 2019 17:28:17 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=8E=88=E6=9D=83app][=E4=BF=AE=E6=94=B9]:?= =?UTF-8?q?=E5=8F=AA=E6=9B=B4=E6=96=B0=E5=AF=B9=E5=BA=94=E7=9A=84=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/WxAuthorizerInfoServiceImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java index 8022691..f7977c9 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxAuthorizerInfoServiceImpl.java @@ -143,7 +143,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService { info.setBaseStatus(record.getBaseStatus()); info.setBaseTime(curDate); info.setUpdateTime(curDate); - return authorizerInfoMapper.updateByPrimaryKeySelective(record); + return authorizerInfoMapper.updateByPrimaryKeySelective(info); } @Override @@ -154,7 +154,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService { info.setDomainStatus(record.getDomainStatus()); info.setDomainTime(curDate); info.setUpdateTime(curDate); - return authorizerInfoMapper.updateByPrimaryKeySelective(record); + return authorizerInfoMapper.updateByPrimaryKeySelective(info); } @Override @@ -165,7 +165,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService { info.setWebdomainStatus(record.getWebdomainStatus()); info.setWebdomainTime(curDate); info.setUpdateTime(curDate); - return authorizerInfoMapper.updateByPrimaryKeySelective(record); + return authorizerInfoMapper.updateByPrimaryKeySelective(info); } @Override @@ -176,7 +176,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService { info.setTemplateStatus(record.getTemplateStatus()); info.setTemplateTime(curDate); info.setUpdateTime(curDate); - return authorizerInfoMapper.updateByPrimaryKeySelective(record); + return authorizerInfoMapper.updateByPrimaryKeySelective(info); } @Override @@ -186,7 +186,7 @@ public class WxAuthorizerInfoServiceImpl implements WxAuthorizerInfoService { info.setId(record.getId()); info.setOpenAppid(record.getOpenAppid()); info.setBindOpenTime(curDate); - return authorizerInfoMapper.updateByPrimaryKeySelective(record); + return authorizerInfoMapper.updateByPrimaryKeySelective(info); } @Override