设备余额恢复

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 device MAC
* @param productId 产品ID * @param seconds 时长
* @param tryCount 尝试次数 * @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 device MAC
* @param productId 产品ID * @param ele 电量
* @param tryCount 尝试次数 * @param tryCount 尝试次数
*/ */
CommandResponse trySetEle(String mac, BigDecimal ele, String productId, int tryCount); CommandResponse trySetEle(IotDevice device, BigDecimal ele, int tryCount);
/** /**
* 设置设备WIFI * 设置设备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.NumberUtils;
import com.ruoyi.common.utils.ServiceUtil; import com.ruoyi.common.utils.ServiceUtil;
import com.ruoyi.common.utils.StringUtils; import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.collection.CollectionUtils;
import com.ruoyi.iot.constants.ReceiveConstants; import com.ruoyi.iot.constants.ReceiveConstants;
import com.ruoyi.iot.domain.IotDeviceDetail; import com.ruoyi.iot.domain.IotDeviceDetail;
import com.ruoyi.iot.domain.ReceiveMsg; import com.ruoyi.iot.domain.ReceiveMsg;
import com.ruoyi.iot.domain.response.CommandResponse; import com.ruoyi.iot.domain.response.CommandResponse;
import com.ruoyi.iot.enums.ReceiveStatus;
import com.ruoyi.iot.enums.ReceiveType; import com.ruoyi.iot.enums.ReceiveType;
import com.ruoyi.iot.service.IotReceiveService; import com.ruoyi.iot.service.IotReceiveService;
import com.ruoyi.iot.service.IotService; 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.enums.DeviceOutageWay;
import com.ruoyi.ss.device.domain.vo.DeviceVO; import com.ruoyi.ss.device.domain.vo.DeviceVO;
import com.ruoyi.ss.device.service.DeviceService; 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.TransactionAssembler;
import com.ruoyi.ss.transactionBill.service.TransactionBillService; import com.ruoyi.ss.transactionBill.service.TransactionBillService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
@ -31,7 +25,6 @@ import org.springframework.transaction.support.TransactionTemplate;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.math.RoundingMode; import java.math.RoundingMode;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.util.List;
/** /**
* @author wjh * @author wjh
@ -66,9 +59,10 @@ public class IotReceiveServiceImpl implements IotReceiveService {
} }
// 数据点推送 // 数据点推送
if (ReceiveType.DATA_POINT.getType().equals(msg.getType())) { if (ReceiveType.DATA_POINT.getType().equals(msg.getType())) {
log.info("收到推送数据点:{},{},{}", msg.getAt(), msg.getDsId(), msg.getValue());
// 若推送数据点:CSQ,则恢复余额 // 若推送数据点:CSQ,则恢复余额
if (ReceiveConstants.DS_CSQ.equals(msg.getDsId())) { 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) { if (expireTime != null || ele.compareTo(BigDecimal.ZERO) > 0) {
BigDecimal finalEle = ele;
transactionTemplate.execute(status -> { transactionTemplate.execute(status -> {
// 记录上次恢复余额的时间 // 记录上次恢复余额的时间
int update = deviceService.updateLastRecoverTime(device.getDeviceId(), msg.getAt()); int update = deviceService.updateLastRecoverTime(device.getDeviceId(), msg.getAt());
ServiceUtil.assertion(update != 1, "更新设备信息失败"); ServiceUtil.assertion(update != 1, "更新设备信息失败");
log.info("设备:{} 恢复余额,过期时间:{},剩余电量:{}", device.getMac(), expireTime, finalEle); log.info("设备:{} 恢复余额,过期时间:{},剩余电量:{}", device.getMac(), expireTime, ele);
if (expireTime != null ) { if (expireTime != null ) {
int setTime = deviceService.setTime(device, expireTime, true, 3); int setTime = deviceService.setTime(device, expireTime, true, 3);
ServiceUtil.assertion(setTime != 1, "恢复设备时长失败"); ServiceUtil.assertion(setTime != 1, "恢复设备时长失败");
} }
if (finalEle.compareTo(BigDecimal.ZERO) > 0) { if (ele.compareTo(BigDecimal.ZERO) > 0) {
CommandResponse res = iotService.trySetEle(device.getMac(), finalEle, device.getModelProductId(), 3); CommandResponse res = iotService.trySetEle(device, ele, 3);
ServiceUtil.assertion(!res.isSuccess(), "设备电量恢复失败:%s", res.getMsg()); ServiceUtil.assertion(!res.isSuccess(), "设备电量恢复失败:%s", res.getMsg());
} }
@ -125,55 +118,4 @@ public class IotReceiveServiceImpl implements IotReceiveService {
redisLock.unlock(RedisLockKey.RECOVER_DEVICE_BALANCE, lockKey); 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 @Override
public CommandResponse trySetTime(String mac, long seconds, String productId, int tryCount) { public CommandResponse trySetTime(IotDevice device, long seconds, int tryCount) {
CommandResponse res = this.setTime(mac, seconds, productId); CommandResponse res = this.setTime(device, seconds);
if (!res.isSuccess()) { if (res == null || !res.isSuccess()) {
if (tryCount > 0) { if (tryCount > 0) {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
return trySetTime(mac, seconds, productId, --tryCount); return trySetTime(device, seconds, --tryCount);
} catch (InterruptedException e) { } catch (InterruptedException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }
@ -409,13 +409,13 @@ public class IotServiceImpl implements IotService {
} }
@Override @Override
public CommandResponse trySetEle(String mac, BigDecimal ele, String productId, int tryCount) { public CommandResponse trySetEle(IotDevice device, BigDecimal ele, int tryCount) {
CommandResponse res = this.setEle(mac, ele, productId); CommandResponse res = this.setEle(device, ele);
if (!res.isSuccess()) { if (res == null || !res.isSuccess()) {
if (tryCount > 0) { if (tryCount > 0) {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
return trySetEle(mac, ele, productId, --tryCount); return trySetEle(device, ele, --tryCount);
} catch (InterruptedException e) { } catch (InterruptedException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }

View File

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

View File

@ -608,10 +608,35 @@ public class DeviceServiceImpl implements DeviceService
return deviceMapper.updateSmDevice(data); return deviceMapper.updateSmDevice(data);
} }
// TODO
@Override @Override
public int setTime(DeviceVO device, LocalDateTime expireTime, boolean withIot, int tryCount) { 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 @Override

View File

@ -1,5 +1,7 @@
package com.ruoyi.ss.suit.domain; 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 io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
@ -14,6 +16,9 @@ public class SuitQuery extends Suit {
@ApiModelProperty("设备名称") @ApiModelProperty("设备名称")
private String deviceName; private String deviceName;
@ApiModelProperty("用户名称")
private String userName;
@ApiModelProperty("套餐id列表") @ApiModelProperty("套餐id列表")
private List<Long> suitIds; 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="feeType != null and feeType != ''"> and ss.fee_type = #{feeType}</if>
<if test="enabledLowPowerClose != null "> and ss.enabled_low_power_close = #{enabledLowPowerClose}</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="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"> <if test="deviceId != null">
and ss.suit_id in ( and ss.suit_id in (
select distinct sds.suit_id from ss_device_suit sds where sds.device_id = #{deviceId} 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") @GetMapping("/list")
public TableDataInfo list(DeviceQuery smDevice) { public TableDataInfo list(DeviceQuery smDevice) {
startPage(); startPage();
startOrderBy();
smDevice.setUserId(getUserId()); smDevice.setUserId(getUserId());
List<DeviceVO> list = smDeviceService.selectSmDeviceList(smDevice); List<DeviceVO> list = smDeviceService.selectSmDeviceList(smDevice);
smDeviceService.pullDeviceInfoList(list); smDeviceService.pullDeviceInfoList(list);