mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-12 11:19:52 +08:00
打印日志
This commit is contained in:
@@ -53,9 +53,6 @@ public class UploadRealTimeMonitorHandler extends AbstractHandler {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IPileConnectorInfoService pileConnectorInfoService;
|
private IPileConnectorInfoService pileConnectorInfoService;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IThirdPartySettingInfoService thirdPartySettingInfoService;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private LianLianService lianLianService;
|
private LianLianService lianLianService;
|
||||||
|
|
||||||
|
|||||||
@@ -507,7 +507,7 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改枪口状态
|
* 修改枪口状态 更新枪口状态
|
||||||
* 所有修改枪口状态的都要使用这个方法,和数据库交互只有这一个口子
|
* 所有修改枪口状态的都要使用这个方法,和数据库交互只有这一个口子
|
||||||
*
|
*
|
||||||
* @param pileConnectorCode 枪口编号 桩编号+枪口号
|
* @param pileConnectorCode 枪口编号 桩编号+枪口号
|
||||||
@@ -515,6 +515,7 @@ public class PileConnectorInfoServiceImpl implements IPileConnectorInfoService {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int updateConnectorStatus(String pileConnectorCode, String status) {
|
public int updateConnectorStatus(String pileConnectorCode, String status) {
|
||||||
|
log.info("更新枪口状态 pileConnectorCode:{}, status:{}", pileConnectorCode, status);
|
||||||
int num = 0;
|
int num = 0;
|
||||||
if (StringUtils.isBlank(pileConnectorCode) || StringUtils.isBlank(status)) {
|
if (StringUtils.isBlank(pileConnectorCode) || StringUtils.isBlank(status)) {
|
||||||
return num;
|
return num;
|
||||||
|
|||||||
Reference in New Issue
Block a user