debug
This commit is contained in:
parent
3f6797fa9f
commit
bef43caee5
|
@ -27,6 +27,8 @@ public class UserConverterImpl implements UserConverter {
|
||||||
vo.setSex(data.getSex());
|
vo.setSex(data.getSex());
|
||||||
vo.setAvatar(data.getAvatar());
|
vo.setAvatar(data.getAvatar());
|
||||||
vo.setStatus(data.getStatus());
|
vo.setStatus(data.getStatus());
|
||||||
|
vo.setWithdrawServiceType(data.getWithdrawServiceType());
|
||||||
|
vo.setWithdrawServiceValue(data.getWithdrawServiceValue());
|
||||||
return vo;
|
return vo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,6 +51,8 @@ public class UserConverterImpl implements UserConverter {
|
||||||
vo.setSex(data.getSex());
|
vo.setSex(data.getSex());
|
||||||
vo.setAvatar(data.getAvatar());
|
vo.setAvatar(data.getAvatar());
|
||||||
vo.setStatus(data.getStatus());
|
vo.setStatus(data.getStatus());
|
||||||
|
vo.setWithdrawServiceType(data.getWithdrawServiceType());
|
||||||
|
vo.setWithdrawServiceValue(data.getWithdrawServiceValue());
|
||||||
return vo;
|
return vo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,8 @@ import com.ruoyi.bst.device.service.DeviceIotService;
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public class DeviceTask {
|
public class DeviceTask {
|
||||||
|
@ -16,7 +18,7 @@ public class DeviceTask {
|
||||||
|
|
||||||
// 监控所有设备
|
// 监控所有设备
|
||||||
public void monitorAll() {
|
public void monitorAll() {
|
||||||
deviceIotService.monitor(null);
|
deviceIotService.monitor(new ArrayList<>());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user