设备余额恢复

This commit is contained in:
墨大叔 2024-10-06 13:32:53 +08:00
parent 1b3c9d90a6
commit c38bcae036
8 changed files with 62 additions and 82 deletions

View File

@ -118,20 +118,21 @@ public interface IotService {
/**
* 尝试设置设备剩余时长
* @param mac MAC
* @param seconds 时长
* @param productId 产品ID
*
* @param device MAC
* @param seconds 时长
* @param tryCount 尝试次数
*/
CommandResponse trySetTime(String mac, long seconds, String productId, int tryCount);
CommandResponse trySetTime(IotDevice device, long seconds, int tryCount);
/**
* 尝试设置设备剩余时长
* @param mac MAC
* @param ele 电量
* @param productId 产品ID
*
* @param device MAC
* @param ele 电量
* @param tryCount 尝试次数
*/
CommandResponse trySetEle(String mac, BigDecimal ele, String productId, int tryCount);
CommandResponse trySetEle(IotDevice device, BigDecimal ele, int tryCount);
/**
* 设置设备WIFI

View File

@ -4,12 +4,10 @@ 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.IotDeviceDetail;
import com.ruoyi.iot.domain.ReceiveMsg;
import com.ruoyi.iot.domain.response.CommandResponse;
import com.ruoyi.iot.enums.ReceiveStatus;
import com.ruoyi.iot.enums.ReceiveType;
import com.ruoyi.iot.service.IotReceiveService;
import com.ruoyi.iot.service.IotService;
@ -17,10 +15,6 @@ import com.ruoyi.ss.device.domain.Device;
import com.ruoyi.ss.device.domain.enums.DeviceOutageWay;
import com.ruoyi.ss.device.domain.vo.DeviceVO;
import com.ruoyi.ss.device.service.DeviceService;
import com.ruoyi.ss.suit.domain.enums.SuitFeeType;
import com.ruoyi.ss.transactionBill.domain.TransactionBillQuery;
import com.ruoyi.ss.transactionBill.domain.enums.TransactionBillStatus;
import com.ruoyi.ss.transactionBill.domain.vo.TransactionBillVO;
import com.ruoyi.ss.transactionBill.service.TransactionAssembler;
import com.ruoyi.ss.transactionBill.service.TransactionBillService;
import lombok.extern.slf4j.Slf4j;
@ -31,7 +25,6 @@ import org.springframework.transaction.support.TransactionTemplate;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.time.LocalDateTime;
import java.util.List;
/**
* @author wjh
@ -66,9 +59,10 @@ public class IotReceiveServiceImpl implements IotReceiveService {
}
// 数据点推送
if (ReceiveType.DATA_POINT.getType().equals(msg.getType())) {
log.info("收到推送数据点:{},{},{}", msg.getAt(), msg.getDsId(), msg.getValue());
// 若推送数据点:CSQ,则恢复余额
if (ReceiveConstants.DS_CSQ.equals(msg.getDsId())) {
// this.recoverBalance(msg);
this.recoverBalance(msg);
}
}
// 生命周期
@ -102,19 +96,18 @@ public class IotReceiveServiceImpl implements IotReceiveService {
// 若有需要恢复余额的设备则进行操作
if (expireTime != null || ele.compareTo(BigDecimal.ZERO) > 0) {
BigDecimal finalEle = ele;
transactionTemplate.execute(status -> {
// 记录上次恢复余额的时间
int update = deviceService.updateLastRecoverTime(device.getDeviceId(), msg.getAt());
ServiceUtil.assertion(update != 1, "更新设备信息失败");
log.info("设备:{} 恢复余额,过期时间:{},剩余电量:{}", device.getMac(), expireTime, finalEle);
log.info("设备:{} 恢复余额,过期时间:{},剩余电量:{}", device.getMac(), expireTime, ele);
if (expireTime != null ) {
int setTime = deviceService.setTime(device, expireTime, true, 3);
ServiceUtil.assertion(setTime != 1, "恢复设备时长失败");
}
if (finalEle.compareTo(BigDecimal.ZERO) > 0) {
CommandResponse res = iotService.trySetEle(device.getMac(), finalEle, device.getModelProductId(), 3);
if (ele.compareTo(BigDecimal.ZERO) > 0) {
CommandResponse res = iotService.trySetEle(device, ele, 3);
ServiceUtil.assertion(!res.isSuccess(), "设备电量恢复失败:%s", res.getMsg());
}
@ -125,55 +118,4 @@ public class IotReceiveServiceImpl implements IotReceiveService {
redisLock.unlock(RedisLockKey.RECOVER_DEVICE_BALANCE, lockKey);
}
}
// 生命周期转设备信息
private Device parseToDeviceByLife(ReceiveMsg msg) {
Device device = new Device();
device.setMac(msg.getDevName());
device.setOnlineStatus(IotDeviceDetail.Status.toDeviceOnlineStatus(msg.getStatus()).getStatus());
return device;
}
// 数据点数据转设备信息
private Device parseToDevice(ReceiveMsg msg) {
Device device = new Device();
device.setMac(msg.getDevName());
if (StringUtils.hasText(msg.getDsId())) {
String value = msg.getValue().toString();
switch(msg.getDsId()) {
case ReceiveConstants.DS_SSID:
device.setWifi(value);
break;
case ReceiveConstants.DS_V:
device.setVoltage(NumberUtils.nonNullDecimal(value));
break;
case ReceiveConstants.DS_P:
device.setRealTimePower(NumberUtils.nonNullDecimal(value));
break;
case ReceiveConstants.DS_A:
device.setElectricity(NumberUtils.nonNullDecimal(value));
break;
case ReceiveConstants.DS_W:
device.setTotalElectriQuantity(NumberUtils.nonNullDecimal(value).divide(new BigDecimal(1000), 2, RoundingMode.HALF_UP));
break;
case ReceiveConstants.DS_S:
device.setPowerStatus(value);
break;
case ReceiveConstants.DS_SET:
DeviceOutageWay deviceOutageWay = DeviceOutageWay.parse(value);
device.setOutageWay(deviceOutageWay.getValue());
break;
case ReceiveConstants.DS_TIME:
device.setRemainTime(NumberUtils.nonNullDecimal(value));
break;
default:
break;
}
}
return device;
}
}

View File

@ -393,13 +393,13 @@ public class IotServiceImpl implements IotService {
}
@Override
public CommandResponse trySetTime(String mac, long seconds, String productId, int tryCount) {
CommandResponse res = this.setTime(mac, seconds, productId);
if (!res.isSuccess()) {
public CommandResponse trySetTime(IotDevice device, long seconds, int tryCount) {
CommandResponse res = this.setTime(device, seconds);
if (res == null || !res.isSuccess()) {
if (tryCount > 0) {
try {
Thread.sleep(1000);
return trySetTime(mac, seconds, productId, --tryCount);
return trySetTime(device, seconds, --tryCount);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
@ -409,13 +409,13 @@ public class IotServiceImpl implements IotService {
}
@Override
public CommandResponse trySetEle(String mac, BigDecimal ele, String productId, int tryCount) {
CommandResponse res = this.setEle(mac, ele, productId);
if (!res.isSuccess()) {
public CommandResponse trySetEle(IotDevice device, BigDecimal ele, int tryCount) {
CommandResponse res = this.setEle(device, ele);
if (res == null || !res.isSuccess()) {
if (tryCount > 0) {
try {
Thread.sleep(1000);
return trySetEle(mac, ele, productId, --tryCount);
return trySetEle(device, ele, --tryCount);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}

View File

@ -147,6 +147,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sd.agent_id,
sd.service_mode,
sd.month_fee,
sd.last_recover_time,
sm.model_name as model,
sm.picture as picture,
sm.tags as model_tags,
@ -171,7 +172,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
<include refid="searchCondition"/>
</where>
order by sd.create_time desc
</select>
<select id="selectSmDeviceByDeviceId" parameterType="Long" resultMap="SmDeviceResult">
@ -328,6 +328,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="agentId != null">agent_id,</if>
<if test="serviceMode != null">service_mode,</if>
<if test="monthFee != null">month_fee,</if>
<if test="lastRecoverTime != null">last_recover_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="storeId != null">#{storeId},</if>
@ -376,6 +377,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="agentId != null">#{agentId},</if>
<if test="serviceMode != null">#{serviceMode},</if>
<if test="monthFee != null">#{monthFee},</if>
<if test="lastRecoverTime != null">#{lastRecoverTime},</if>
</trim>
</insert>
@ -445,6 +447,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="agentId != null">agent_id = #{agentId},</if>
<if test="serviceMode != null">service_mode = #{serviceMode},</if>
<if test="monthFee != null">month_fee = #{monthFee},</if>
<if test="lastRecoverTime != null">last_recover_time = #{lastRecoverTime},</if>
</trim>
where device_id = #{deviceId}
</update>

View File

@ -608,10 +608,35 @@ public class DeviceServiceImpl implements DeviceService
return deviceMapper.updateSmDevice(data);
}
// TODO
@Override
public int setTime(DeviceVO device, LocalDateTime expireTime, boolean withIot, int tryCount) {
return 0;
if (device == null || StringUtils.isBlank(device.getMac()) || expireTime == null) {
return 0;
}
Integer result = transactionTemplate.execute(status -> {
Device data = new Device();
data.setDeviceId(device.getDeviceId());
data.setExpireTime(expireTime);
int update = deviceMapper.updateSmDevice(data);
ServiceUtil.assertion(update != 1, "更新数据失败");
if (withIot) {
Duration between = Duration.between(LocalDateTime.now(), expireTime);
long seconds = between.getSeconds();
if (seconds > 0) {
CommandResponse res = iotService.trySetTime(device, seconds, tryCount);
if (!res.isSuccess()) {
log.error("操作设备失败:{}", res.getMsg());
}
return res.isSuccess() ? 1 : 0;
}
}
return update;
});
return result == null ? 0 : 1;
}
@Override

View File

@ -1,5 +1,7 @@
package com.ruoyi.ss.suit.domain;
import com.fasterxml.jackson.annotation.JsonView;
import com.ruoyi.common.core.domain.JsonViewProfile;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ -14,6 +16,9 @@ public class SuitQuery extends Suit {
@ApiModelProperty("设备名称")
private String deviceName;
@ApiModelProperty("用户名称")
private String userName;
@ApiModelProperty("套餐id列表")
private List<Long> suitIds;

View File

@ -54,6 +54,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="feeType != null and feeType != ''"> and ss.fee_type = #{feeType}</if>
<if test="enabledLowPowerClose != null "> and ss.enabled_low_power_close = #{enabledLowPowerClose}</if>
<if test="enabledVoice != null "> and ss.enabled_voice = #{enabledVoice}</if>
<if test="userName != null and userName != ''">
and su.user_name like concat('%', #{userName}, '%')
</if>
<if test="deviceId != null">
and ss.suit_id in (
select distinct sds.suit_id from ss_device_suit sds where sds.device_id = #{deviceId}

View File

@ -77,6 +77,7 @@ public class AppDeviceController extends BaseController {
@GetMapping("/list")
public TableDataInfo list(DeviceQuery smDevice) {
startPage();
startOrderBy();
smDevice.setUserId(getUserId());
List<DeviceVO> list = smDeviceService.selectSmDeviceList(smDevice);
smDeviceService.pullDeviceInfoList(list);