设备系数
This commit is contained in:
parent
29ca4d69cb
commit
6cd799bfdb
|
@ -96,6 +96,11 @@ public class IotConstants {
|
||||||
*/
|
*/
|
||||||
public static final String COMMAND_SET_TOTAL_ELE = "pow_set";
|
public static final String COMMAND_SET_TOTAL_ELE = "pow_set";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 命令 设置电压系数
|
||||||
|
*/
|
||||||
|
public static final String COMMAND_SET_VXS = "v_xs";
|
||||||
|
|
||||||
/**----------------------------命令end----------------------------*/
|
/**----------------------------命令end----------------------------*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,4 +35,7 @@ public class ReceiveConstants {
|
||||||
|
|
||||||
// 数据点ID:VER 版本号
|
// 数据点ID:VER 版本号
|
||||||
public static final String DS_VER = "VER";
|
public static final String DS_VER = "VER";
|
||||||
|
|
||||||
|
// 数据点ID:VXS 电压系数
|
||||||
|
public static final String DS_VXS = "VXS";
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ public class IotDeviceInfo {
|
||||||
private String model; // 型号
|
private String model; // 型号
|
||||||
private String wifi; // WIFI
|
private String wifi; // WIFI
|
||||||
private String version; // 版本号
|
private String version; // 版本号
|
||||||
|
private BigDecimal vxs; // 电压系数
|
||||||
|
|
||||||
public static IotDeviceInfo newDefaultInstance() {
|
public static IotDeviceInfo newDefaultInstance() {
|
||||||
return IotDeviceInfo.builder()
|
return IotDeviceInfo.builder()
|
||||||
|
@ -45,7 +46,7 @@ public class IotDeviceInfo {
|
||||||
.time(BigDecimal.ZERO)
|
.time(BigDecimal.ZERO)
|
||||||
.model(null)
|
.model(null)
|
||||||
.version(null)
|
.version(null)
|
||||||
|
.vxs(BigDecimal.ONE)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import com.ruoyi.iot.domain.IotDeviceInfo;
|
||||||
import com.ruoyi.iot.domain.response.CommandResponse;
|
import com.ruoyi.iot.domain.response.CommandResponse;
|
||||||
import com.ruoyi.iot.interfaces.IotDevice;
|
import com.ruoyi.iot.interfaces.IotDevice;
|
||||||
import com.ruoyi.ss.device.domain.enums.DeviceOnlineStatus;
|
import com.ruoyi.ss.device.domain.enums.DeviceOnlineStatus;
|
||||||
|
import com.ruoyi.ss.device.domain.vo.DeviceVO;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -125,4 +126,8 @@ public interface IotService {
|
||||||
*/
|
*/
|
||||||
HistoryDeviceData getHistoryDataPoint(String deviceName, String productId);
|
HistoryDeviceData getHistoryDataPoint(String deviceName, String productId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置电压系数
|
||||||
|
*/
|
||||||
|
CommandResponse setVxs(DeviceVO device, BigDecimal vxs, String reason);
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,6 +99,9 @@ public class IotConverterImpl implements IotConverter {
|
||||||
case ReceiveConstants.DS_VER:
|
case ReceiveConstants.DS_VER:
|
||||||
device.setVersion(value);
|
device.setVersion(value);
|
||||||
break;
|
break;
|
||||||
|
case ReceiveConstants.DS_VXS:
|
||||||
|
device.setVxs(NumberUtils.nonNullDecimal(value, BigDecimal.ZERO));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ import com.ruoyi.iot.service.IotConverter;
|
||||||
import com.ruoyi.iot.service.IotService;
|
import com.ruoyi.iot.service.IotService;
|
||||||
import com.ruoyi.ss.commandLog.service.ICommandLogService;
|
import com.ruoyi.ss.commandLog.service.ICommandLogService;
|
||||||
import com.ruoyi.ss.device.domain.enums.DeviceOnlineStatus;
|
import com.ruoyi.ss.device.domain.enums.DeviceOnlineStatus;
|
||||||
|
import com.ruoyi.ss.device.domain.vo.DeviceVO;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
@ -207,6 +208,29 @@ public class IotServiceImpl implements IotService {
|
||||||
return response.getData();
|
return response.getData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CommandResponse setVxs(DeviceVO device, BigDecimal vxs, String reason) {
|
||||||
|
ServiceUtil.assertion(device == null || vxs == null, "设备或参数为空");
|
||||||
|
|
||||||
|
CommandResponse res = null;
|
||||||
|
if (StringUtils.hasText(device.iotMac1())) {
|
||||||
|
res = this.setVxs(device.iotMac1(), vxs, device.getProductId(), reason);
|
||||||
|
}
|
||||||
|
if ((res == null || !res.isSuccess()) && StringUtils.hasText(device.iotMac2())) {
|
||||||
|
res = this.setVxs(device.iotMac2(), vxs, device.getProductId(), reason);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
private CommandResponse setVxs(String deviceName, BigDecimal vxs, String productId, String reason) {
|
||||||
|
if (StringUtils.isBlank(deviceName) || vxs == null || productId == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
String command = IotConstants.COMMAND_SET_VXS + vxs + IotConstants.COMMAND_SEPARATOR;
|
||||||
|
return sendCommand(deviceName, command, productId, reason);
|
||||||
|
}
|
||||||
|
|
||||||
// 获取当前设备数据点信息
|
// 获取当前设备数据点信息
|
||||||
public List<CurrentDeviceData> getCurrentDataPoint(List<String> deviceNames, String productId) {
|
public List<CurrentDeviceData> getCurrentDataPoint(List<String> deviceNames, String productId) {
|
||||||
String param = "device_name=" + String.join(",", deviceNames) + "&product_id=" + productId;
|
String param = "device_name=" + String.join(",", deviceNames) + "&product_id=" + productId;
|
||||||
|
|
|
@ -256,4 +256,7 @@ public class Device extends BaseEntity
|
||||||
@Excel(name = "最后一次设置总电量初始读数的时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "最后一次设置总电量初始读数的时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
@ApiModelProperty("最后一次设置总电量初始读数的时间")
|
@ApiModelProperty("最后一次设置总电量初始读数的时间")
|
||||||
private LocalDateTime lastInitReading;
|
private LocalDateTime lastInitReading;
|
||||||
|
|
||||||
|
@ApiModelProperty("电压系数")
|
||||||
|
private BigDecimal vxs;
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
sd.version,
|
sd.version,
|
||||||
sd.expire_ele,
|
sd.expire_ele,
|
||||||
sd.last_init_reading,
|
sd.last_init_reading,
|
||||||
|
sd.vxs,
|
||||||
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,
|
||||||
|
@ -394,6 +395,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="version != null">version,</if>
|
<if test="version != null">version,</if>
|
||||||
<if test="expireEle != null">expire_ele,</if>
|
<if test="expireEle != null">expire_ele,</if>
|
||||||
<if test="lastInitReading != null">last_init_reading,</if>
|
<if test="lastInitReading != null">last_init_reading,</if>
|
||||||
|
<if test="vxs != null">vxs,</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>
|
||||||
|
@ -448,6 +450,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="version != null">#{version},</if>
|
<if test="version != null">#{version},</if>
|
||||||
<if test="expireEle != null">#{expireEle},</if>
|
<if test="expireEle != null">#{expireEle},</if>
|
||||||
<if test="lastInitReading != null">#{lastInitReading},</if>
|
<if test="lastInitReading != null">#{lastInitReading},</if>
|
||||||
|
<if test="vxs != null">#{vxs},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -533,6 +536,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="version != null">version = #{version},</if>
|
<if test="version != null">version = #{version},</if>
|
||||||
<if test="expireEle != null">expire_ele = #{expireEle},</if>
|
<if test="expireEle != null">expire_ele = #{expireEle},</if>
|
||||||
<if test="lastInitReading != null">last_init_reading = #{lastInitReading},</if>
|
<if test="lastInitReading != null">last_init_reading = #{lastInitReading},</if>
|
||||||
|
<if test="vxs != null">vxs = #{vxs},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where device_id = #{deviceId}
|
where device_id = #{deviceId}
|
||||||
</update>
|
</update>
|
||||||
|
|
|
@ -389,4 +389,8 @@ public interface DeviceService
|
||||||
*/
|
*/
|
||||||
int initTotalEle(Long deviceId);
|
int initTotalEle(Long deviceId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改电压系数
|
||||||
|
*/
|
||||||
|
int updateVxs(Long deviceId, BigDecimal vxs, String reason);
|
||||||
}
|
}
|
||||||
|
|
|
@ -967,6 +967,7 @@ public class DeviceServiceImpl implements DeviceService
|
||||||
device.setVoltage(deviceInfo.getV());
|
device.setVoltage(deviceInfo.getV());
|
||||||
device.setElectricity(deviceInfo.getA());
|
device.setElectricity(deviceInfo.getA());
|
||||||
device.setVersion(deviceInfo.getVersion());
|
device.setVersion(deviceInfo.getVersion());
|
||||||
|
device.setVxs(deviceInfo.getVxs());
|
||||||
|
|
||||||
// 总用电量
|
// 总用电量
|
||||||
if (deviceInfo.getW() != null) {
|
if (deviceInfo.getW() != null) {
|
||||||
|
@ -1240,6 +1241,18 @@ public class DeviceServiceImpl implements DeviceService
|
||||||
return deviceMapper.initTotalEle(deviceId);
|
return deviceMapper.initTotalEle(deviceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateVxs(Long deviceId, BigDecimal vxs, String reason) {
|
||||||
|
if (deviceId == null || vxs == null) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
DeviceVO device = this.selectById(deviceId);
|
||||||
|
ServiceUtil.assertion(device == null, "设备不存在");
|
||||||
|
|
||||||
|
CommandResponse res = iotService.setVxs(device, vxs, reason);
|
||||||
|
return res != null && res.isSuccess() ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备是否已经被绑定
|
* 设备是否已经被绑定
|
||||||
*
|
*
|
||||||
|
|
|
@ -299,6 +299,13 @@ public class AppDeviceController extends BaseController {
|
||||||
return toAjax(smDeviceService.switchDevice(deviceId, open, "小程序管理员开关设备"));
|
return toAjax(smDeviceService.switchDevice(deviceId, open, "小程序管理员开关设备"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation("管理员修改设备电压系数")
|
||||||
|
@DeviceAdminRequired
|
||||||
|
@PutMapping("/admin/{deviceId}/vxs")
|
||||||
|
public AjaxResult getExistMac(@PathVariable @ApiParam("设备ID") Long deviceId, @RequestParam @ApiParam("电压系数") BigDecimal vxs) {
|
||||||
|
return toAjax(smDeviceService.updateVxs(deviceId, vxs, "小程序管理员修改设备电压系数"));
|
||||||
|
}
|
||||||
|
|
||||||
@ApiOperation("获取正在使用中的设备列表")
|
@ApiOperation("获取正在使用中的设备列表")
|
||||||
@GetMapping("/usingDevice")
|
@GetMapping("/usingDevice")
|
||||||
@JsonView(JsonViewProfile.App.class)
|
@JsonView(JsonViewProfile.App.class)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user