待发布

This commit is contained in:
磷叶 2025-01-03 15:23:33 +08:00
parent 8f5431bc9f
commit 03878c137c
11 changed files with 107 additions and 132 deletions

View File

@ -4,7 +4,6 @@ import com.ruoyi.common.core.redis.RedisLock;
import com.ruoyi.common.core.redis.enums.RedisLockKey;
import com.ruoyi.common.utils.NumberUtils;
import com.ruoyi.common.utils.ServiceUtil;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.collection.CollectionUtils;
import com.ruoyi.iot.constants.ReceiveConstants;
import com.ruoyi.iot.domain.Datapoint;
@ -15,7 +14,6 @@ import com.ruoyi.iot.domain.response.CommandResponse;
import com.ruoyi.iot.enums.ReceiveType;
import com.ruoyi.iot.service.IotReceiveService;
import com.ruoyi.iot.service.IotService;
import com.ruoyi.ss.device.domain.enums.DevicePowerStatus;
import com.ruoyi.ss.device.domain.vo.DeviceVO;
import com.ruoyi.ss.device.service.DeviceService;
import com.ruoyi.ss.transactionBill.service.TransactionAssembler;
@ -71,8 +69,8 @@ public class IotReceiveServiceImpl implements IotReceiveService {
}
// 开关状态
else if (ReceiveConstants.DS_S.equals(msg.getDsId())) {
// 同步订单状态
this.syncOrderStatus(msg);
// 同步订单状态 已经改为轮询无需再做
// this.syncOrderStatus(msg);
}
}
// 生命周期
@ -84,22 +82,22 @@ public class IotReceiveServiceImpl implements IotReceiveService {
* 当开关状态为关闭则同步订单状态
*/
private void syncOrderStatus(ReceiveMsg msg) {
if (msg == null || StringUtils.isBlank(msg.getDevName())) {
return;
}
// 开关不是断电状态则忽略
if (!DevicePowerStatus.OFF.getStatus().equals(msg.getValue())) {
return;
}
log.info("{} 开关状态为 {}", msg.getDevName(), msg.getValue());
DeviceVO device = deviceService.selectByAnyMac(msg.getDevName());
if (device == null) {
log.error("设备:{} 不存在", msg.getDevName());
return;
}
// 拉取一下设备信息
deviceService.pullDeviceInfo(device);
// if (msg == null || StringUtils.isBlank(msg.getDevName())) {
// return;
// }
// // 开关不是断电状态则忽略
// if (!DevicePowerStatus.OFF.getStatus().equals(msg.getValue())) {
// return;
// }
// log.info("{} 开关状态为 {}", msg.getDevName(), msg.getValue());
//
// DeviceVO device = deviceService.selectByAnyMac(msg.getDevName());
// if (device == null) {
// log.error("设备:{} 不存在", msg.getDevName());
// return;
// }
// // 拉取一下设备信息
// deviceService.pullDeviceInfo(device, IotConstants.ONLINE_TYPE_COMMAND);
// 查询
}

View File

@ -114,16 +114,8 @@ public interface DeviceService
/**
* 拉取设备信息并保存到数据库
*
* @param deviceIds 设备id列表为空则查询所有
*/
void pullDeviceInfo(List<Long> deviceIds);
/**
* 拉取设备信息并保存到数据库
*/
void pullDeviceInfoList(List<DeviceVO> list);
void pullDeviceInfoList(List<DeviceVO> list, String onlineType);
/**
* 通过SN绑定设备
@ -292,7 +284,7 @@ public interface DeviceService
/**
* 刷新设备数据
*/
void pullDeviceInfo(Long deviceId);
void pullDeviceInfo(Long deviceId, String onlineType);
/**
* 设备归零时长
@ -340,7 +332,7 @@ public interface DeviceService
/**
* 拉取最新设备数据
*/
void pullDeviceInfo(DeviceVO device);
void pullDeviceInfo(DeviceVO device, String onlineType);
/**
* 解绑代理商

View File

@ -41,7 +41,6 @@ import com.ruoyi.ss.deviceSuit.service.DeviceSuitService;
import com.ruoyi.ss.model.domain.SmModelVO;
import com.ruoyi.ss.model.domain.enums.ModelTag;
import com.ruoyi.ss.model.service.ModelService;
import com.ruoyi.ss.record.time.domain.RecordTime;
import com.ruoyi.ss.record.time.domain.enums.RecordTimeType;
import com.ruoyi.ss.record.time.service.IRecordTimeService;
import com.ruoyi.ss.record.time.service.RecordTimeConverter;
@ -55,7 +54,6 @@ import com.ruoyi.ss.transactionBill.service.TransactionBillService;
import com.ruoyi.ss.user.domain.SmUserVO;
import com.ruoyi.ss.user.service.ISmUserService;
import com.ruoyi.ss.user.service.UserValidator;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@ -369,8 +367,14 @@ public class DeviceServiceImpl implements DeviceService
*/
@Override
public int switchDevice(Long deviceId, boolean open, String reason) {
if (deviceId == null) {
return 0;
}
DeviceVO device = selectById(deviceId);
this.pullDeviceInfo(device);
if (device == null) {
return 0;
}
this.pullDeviceInfo(device, null);
return this.switchDevice(device, open ? DevicePowerStatus.ON : DevicePowerStatus.OFF, reason);
}
@ -391,8 +395,9 @@ public class DeviceServiceImpl implements DeviceService
}
@Override
public void pullDeviceInfo(Long deviceId) {
pullDeviceInfo(Collections.singletonList(deviceId));
public void pullDeviceInfo(Long deviceId, String onlineType) {
DeviceVO device = selectById(deviceId);
pullDeviceInfo(device, onlineType);
}
@Override
@ -418,9 +423,9 @@ public class DeviceServiceImpl implements DeviceService
});
// 归零记录
if (result != null && result == 1 ) {
this.resetRecord(device, RecordTimeType.TIME, reason);
}
// if (result != null && result == 1 ) {
// this.resetRecord(device, RecordTimeType.TIME, reason);
// }
return result == null ? 0 : result;
}
@ -459,31 +464,37 @@ public class DeviceServiceImpl implements DeviceService
});
// 归零记录
if (result != null && result == 1 ) {
this.resetRecord(device, RecordTimeType.ELE, reason);
}
// if (result != null && result == 1 ) {
// this.resetRecord(device, RecordTimeType.ELE, reason);
// }
return result == null ? 0 : result;
}
private void resetRecord(DeviceVO device, RecordTimeType type, String reason) {
// 电量
if (RecordTimeType.ELE.equals(type)) {
int amount = device.getSurplusEle().negate().intValue();
RecordTime record = recordTimeConverter.toRecordTime(device.getDeviceId(), amount, reason, RecordTimeType.ELE.getType());
scheduledExecutorService.schedule(() -> {
recordTimeService.insertRecordTime(record);
}, 0, TimeUnit.SECONDS);
}
// 时长
else if (RecordTimeType.TIME.equals(type)) {
Duration duration = Duration.between(LocalDateTime.now(), device.getExpireTime());
long seconds = duration.getSeconds() > 0 ? duration.getSeconds() : 0;
RecordTime record = recordTimeConverter.toRecordTime(device.getDeviceId(), -seconds, reason, RecordTimeType.TIME.getType());
scheduledExecutorService.schedule(() -> {
recordTimeService.insertRecordTime(record);
}, 0, TimeUnit.SECONDS);
}
// // 电量
// if (RecordTimeType.ELE.equals(type)) {
// int amount = device.getSurplusEle().negate().intValue();
// RecordTime record = recordTimeConverter.toRecordTime(device.getDeviceId(), amount, reason, RecordTimeType.ELE.getType());
// scheduledExecutorService.schedule(() -> {
// recordTimeService.insertRecordTime(record);
// }, 0, TimeUnit.SECONDS);
// }
// // 时长
// else if (RecordTimeType.TIME.equals(type)) {
// LocalDateTime expireTime = device.getExpireTime();
// long seconds = 0;
// if (expireTime != null) {
// Duration duration = Duration.between(LocalDateTime.now(), expireTime);
// seconds = duration.getSeconds() > 0 ? duration.getSeconds() : 0;
// }
// if (seconds > 0) {
// RecordTime record = recordTimeConverter.toRecordTime(device.getDeviceId(), -seconds, reason, RecordTimeType.TIME.getType());
// scheduledExecutorService.schedule(() -> {
// recordTimeService.insertRecordTime(record);
// }, 0, TimeUnit.SECONDS);
// }
// }
}
private int resetUpdateDbEle(Long deviceId, BigDecimal expireEle) {
@ -591,8 +602,8 @@ public class DeviceServiceImpl implements DeviceService
}
@Override
public void pullDeviceInfo(DeviceVO device) {
this.pullDeviceInfoList(Collections.singletonList(device));
public void pullDeviceInfo(DeviceVO device, String onlineType) {
this.pullDeviceInfoList(Collections.singletonList(device), onlineType);
}
@Override
@ -739,7 +750,7 @@ public class DeviceServiceImpl implements DeviceService
// 成功后拉取设备信息
boolean success = result != null && result == 1;
if (success) {
this.pullDeviceInfoAsync(Collections.singletonList(deviceId), 3, TimeUnit.SECONDS);
this.pullDeviceInfoAsync(device, 3, TimeUnit.SECONDS);
}
return success;
@ -804,7 +815,7 @@ public class DeviceServiceImpl implements DeviceService
// 查询设备列表
List<DeviceVO> deviceList = this.selectByIds(deviceIds);
// 拉取最新数据
this.pullDeviceInfoList(deviceList);
this.pullDeviceInfoList(deviceList, null);
Integer result = transactionTemplate.execute(status -> {
// 关闭设备订单
@ -890,23 +901,8 @@ public class DeviceServiceImpl implements DeviceService
return result == null ? 0 : result;
}
/**
* 拉取设备信息并保存到数据库
*
* @param deviceIds 设备id列表为空则查询所有
*/
@Override
@SneakyThrows
public void pullDeviceInfo(List<Long> deviceIds) {
// 查询设备列表
DeviceQuery dto = new DeviceQuery();
dto.setDeviceIds(deviceIds);
List<DeviceVO> list = deviceMapper.selectSmDeviceList(dto);
this.pullDeviceInfoList(list);
}
@Override
public void pullDeviceInfoList(List<DeviceVO> list) {
public void pullDeviceInfoList(List<DeviceVO> list, String onlineType) {
if (CollectionUtils.isEmptyElement(list)) {
return;
}
@ -988,8 +984,10 @@ public class DeviceServiceImpl implements DeviceService
// 异步更新设备信息
for (DeviceVO device : list) {
scheduledExecutorService.schedule(() -> {
// 获取并设置在线状态
this.setOnlineStatus(device, IotConstants.ONLINE_TYPE_COMMAND);
if (StringUtils.hasText(onlineType)) {
// 获取并设置在线状态
this.setOnlineStatus(device, onlineType);
}
// 更新数据库
this.updateIotInfo(device);
}, 0, TimeUnit.SECONDS);
@ -1035,14 +1033,14 @@ public class DeviceServiceImpl implements DeviceService
/**
* 异步延迟执行拉取设备信息
* @param deviceIds 设备id列表
* @param device 设备id列表
* @param delay 延迟时间
* @param unit 时间单位
*/
private void pullDeviceInfoAsync(List<Long> deviceIds, long delay, TimeUnit unit) {
private void pullDeviceInfoAsync(DeviceVO device, long delay, TimeUnit unit) {
scheduledExecutorService.schedule(() -> {
log.info("异步拉取设备信息 start");
this.pullDeviceInfo(deviceIds);
this.pullDeviceInfo(device, null);
log.info("异步拉取设备信息 end");
}, delay, unit);
}
@ -1140,7 +1138,10 @@ public class DeviceServiceImpl implements DeviceService
DeviceVO device = deviceMapper.selectSmDeviceByDeviceId(deviceId);
ServiceUtil.assertion(device == null || device.getDeleted(), "设备不存在");
// 拉取最新设备信息
pullDeviceInfo(device);
pullDeviceInfo(device, null);
// 关闭未完成订单
this.closeNotFinishedBill(device, totalEle);
Integer result = transactionTemplate.execute(status -> {
// 修改设备信息
@ -1157,9 +1158,6 @@ public class DeviceServiceImpl implements DeviceService
int update = deviceMapper.updateSmDevice(data);
ServiceUtil.assertion(update != 1, "更新设备%s信息失败", device.getDeviceNo());
// 关闭未完成订单
this.closeNotFinishedBill(device, totalEle);
// 发送命令
if (withTime) {
// this.resetTime(device, false, reason); // 重置时长
@ -1192,10 +1190,10 @@ public class DeviceServiceImpl implements DeviceService
return 1;
});
if (result != null && result == 1) {
this.resetRecord(device, RecordTimeType.TIME, reason);
this.resetRecord(device, RecordTimeType.ELE, reason);
}
// if (result != null && result == 1) {
// this.resetRecord(device, RecordTimeType.TIME, reason);
// this.resetRecord(device, RecordTimeType.ELE, reason);
// }
return result == null ? 0 : result;
}
@ -1229,7 +1227,7 @@ public class DeviceServiceImpl implements DeviceService
return 0;
}
// 拉取设备信息
this.pullDeviceInfo(deviceId);
this.pullDeviceInfo(deviceId, null);
return deviceMapper.initTotalEle(deviceId);
}
@ -1336,7 +1334,7 @@ public class DeviceServiceImpl implements DeviceService
scheduledExecutorService.schedule(() -> {
// 获取设备最新信息
DeviceVO device = selectById(deviceId);
pullDeviceInfo(device);
pullDeviceInfo(device, null);
// 若物联网设备的时长或者电量小于当前设备数据库的值则执行一次同步开启
// 一般情况下物联网设备的值会大于或等于当前数据库的值

View File

@ -49,7 +49,7 @@ public class RechargeDepositAfterPay implements AfterPay {
DeviceVO device = deviceService.selectById(bill.getDeviceId());
ServiceUtil.assertion(device == null, "设备不存在");
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
Integer result = transactionTemplate.execute(status -> {
// 修改订单信息

View File

@ -94,7 +94,7 @@ public class RechargePayHandler implements AfterPay, AfterRefund {
// 设备信息
DeviceVO device = bo.getDevice();
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
List<BonusVO> bonusList = bill.getBonusList();

View File

@ -194,7 +194,7 @@ public class TransactionBillConverterImpl implements TransactionBillConverter {
bo.setTotalEle(dto.getTotalEle());
if (order != null) {
DeviceVO device = deviceService.selectById(order.getDeviceId());
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
bo.setDevice(device);
}
return bo;

View File

@ -269,7 +269,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
ServiceUtil.assertion(!redisLock.lock(RedisLockKey.ADD_RECHARGE_ORDER, deviceId), "当前使用该设备人数较多,请稍后再试");
try {
// 拉取设备信息
deviceService.pullDeviceInfo(bo.getDevice().getDeviceId());
deviceService.pullDeviceInfo(bo.getDevice().getDeviceId(), null);
// 生成订单
TransactionBill order = parseToOrder(bo);
@ -866,7 +866,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
// 获取最新设备信息
DeviceVO device = deviceService.selectById(bill.getDeviceId());
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
// 充值设备
Boolean iotResult = transactionTemplate.execute(status -> {
@ -1143,7 +1143,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
// 计量收费则获取最新的设备信息
if(SuitFeeType.COUNT.getType().equals(bill.getSuitFeeType()) || SuitFeeType.TIMING_COUNT.getType().equals(bill.getSuitFeeType())) {
DeviceVO device = deviceService.selectById(bill.getDeviceId());
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
totalEle = this.calcTotalEle(device, totalEle);
}
@ -1541,30 +1541,14 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
public boolean bluetoothRechargeSuccess(String billNo) {
TransactionBillVO bill = selectSmTransactionBillByBillNo(billNo);
ServiceUtil.assertion(bill == null, "订单不存在", 10001);
ServiceUtil.assertion(!TransactionBillType.RECHARGE.getType().equals(bill.getType()), "该订单不是充值订单", 10002);
ServiceUtil.assertion(TransactionBillDeviceRechargeStatus.SUCCESS.getStatus().equals(bill.getDeviceRechargeStatus()), "设备已充值成功,请勿重复充值", 10003);
ServiceUtil.assertion(!TransactionBillStatus.SUCCESS.getStatus().equals(bill.getStatus()), "订单尚未充值成功", 10004);
// 拉取设备信息
deviceService.pullDeviceInfo(bill.getDeviceId());
// 更新设备充值状态
TransactionBill data = new TransactionBill();
data.setDeviceRechargeStatus(TransactionBillDeviceRechargeStatus.SUCCESS.getStatus());
data.setOpenMsg("蓝牙充值成功");
data.setBillId(bill.getBillId());
Integer execute = transactionTemplate.execute(status -> {
// 更新设备充值状态
TransactionBill data = new TransactionBill();
data.setDeviceRechargeStatus(TransactionBillDeviceRechargeStatus.SUCCESS.getStatus());
data.setOpenMsg("蓝牙充值成功");
TransactionBillQuery query = new TransactionBillQuery();
query.setBillId(bill.getBillId());
query.setType(TransactionBillType.RECHARGE.getType());
query.setDeviceRechargeStatus(TransactionBillDeviceRechargeStatus.BLUETOOTH.getStatus());
query.setStatus(TransactionBillStatus.SUCCESS.getStatus());
int result = this.updateByQuery(data, query);
ServiceUtil.assertion( result != 1, "蓝牙充值回调失败,设备状态已发生改变");
return result;
});
return execute != null && execute == 1;
return this.updateSmTransactionBill(data) == 1;
}
@Override
@ -1830,7 +1814,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
DeviceVO device = deviceService.selectById(bill.getDeviceId());
ServiceUtil.assertion(device == null, "设备不存在");
ServiceUtil.assertion(StringUtils.isAllBlank(device.getMac(), device.getMac2()), "设备MAC为空请联系管理员处理");
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, null);
// 开启
if (open) {

View File

@ -1,5 +1,6 @@
package com.ruoyi.web.controller.app;
import com.ruoyi.common.constant.IotConstants;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.StringUtils;
@ -74,7 +75,7 @@ public class AppDeviceAdminController extends BaseController {
return error("上报数据失败");
}
Threads.sleep(3000);
deviceService.pullDeviceInfo(device);
deviceService.pullDeviceInfo(device, IotConstants.ONLINE_TYPE_COMMAND);
return success(device);
}

View File

@ -2,6 +2,7 @@ package com.ruoyi.web.controller.app;
import com.fasterxml.jackson.annotation.JsonView;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.constant.IotConstants;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.domain.JsonViewProfile;
@ -96,7 +97,7 @@ public class AppDeviceController extends BaseController {
startOrderBy();
smDevice.setUserId(getUserId());
List<DeviceVO> list = smDeviceService.selectSmDeviceList(smDevice);
smDeviceService.pullDeviceInfoList(list);
smDeviceService.pullDeviceInfoList(list, IotConstants.ONLINE_TYPE_COMMAND);
deviceAssembler.assembleRealServiceRate(list);
return getDataTable(list);
}
@ -108,7 +109,7 @@ public class AppDeviceController extends BaseController {
startPage();
query.setStoreId(storeId);
List<DeviceVO> list = smDeviceService.selectSmDeviceList(query);
smDeviceService.pullDeviceInfoList(list);
smDeviceService.pullDeviceInfoList(list, IotConstants.ONLINE_TYPE_COMMAND);
deviceAssembler.assembleBusinessTime(list); // 店铺营业时间
return getDataTable(list);
}
@ -139,7 +140,7 @@ public class AppDeviceController extends BaseController {
ServiceUtil.assertion(!device.getAllowSwitch(), "您无权操作此设备");
// 获取最新数据
smDeviceService.pullDeviceInfo(device);
smDeviceService.pullDeviceInfo(device, IotConstants.ONLINE_TYPE_COMMAND);
DevicePowerStatus powerStatus = DevicePowerStatus.parse(status);
return toAjax(smDeviceService.switchDevice(device, powerStatus, "商户开关设备"));
@ -216,7 +217,7 @@ public class AppDeviceController extends BaseController {
@ApiOperation("刷新设备信息")
@GetMapping("/{deviceId}/refreshIot")
public AjaxResult syncIot(@PathVariable @ApiParam("设备id") Long deviceId) {
smDeviceService.pullDeviceInfo(deviceId);
smDeviceService.pullDeviceInfo(deviceId, IotConstants.ONLINE_TYPE_COMMAND);
return success();
}
@ -235,7 +236,7 @@ public class AppDeviceController extends BaseController {
} else {
return error("设备ID、SN、MAC必须传入其中一个");
}
smDeviceService.pullDeviceInfo(device);
smDeviceService.pullDeviceInfo(device, IotConstants.ONLINE_TYPE_COMMAND);
return success(device);
}

View File

@ -51,7 +51,7 @@ public class SmDeviceController extends BaseController
{
startPage();
List<DeviceVO> list = deviceService.selectSmDeviceList(smDevice);
deviceService.pullDeviceInfoList(list);
deviceService.pullDeviceInfoList(list, IotConstants.ONLINE_TYPE_COMMAND);
deviceAssembler.assembleRealServiceRate(list);
return getDataTable(list);
}
@ -142,7 +142,7 @@ public class SmDeviceController extends BaseController
@GetMapping("/{deviceId}/refreshIot")
public AjaxResult syncIot(@PathVariable @ApiParam("设备id") Long deviceId,
@RequestParam(required = false, defaultValue = IotConstants.ONLINE_TYPE_GET) String onlineType) {
deviceService.pullDeviceInfo(deviceId);
deviceService.pullDeviceInfo(deviceId, IotConstants.ONLINE_TYPE_COMMAND);
return success();
}

View File

@ -1,5 +1,6 @@
package com.ruoyi.web.controller.staff;
import com.ruoyi.common.constant.IotConstants;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.ss.device.domain.DeviceQuery;
@ -37,7 +38,7 @@ public class StaffDeviceController extends BaseController {
query.setStaffUserId(getUserId());
query.setStaffPermission(StoreStaffPermissions.DEVICE_VIEW.getCode());
List<DeviceVO> list = deviceService.selectStaffDeviceList(query);
deviceService.pullDeviceInfoList(list);
deviceService.pullDeviceInfoList(list, IotConstants.ONLINE_TYPE_COMMAND);
return getDataTable(list);
}