mirror of
https://github.com/niushuai233/DevControl.git
synced 2024-10-27 22:43:20 +08:00
feat: 添加设备信息实体类
This commit is contained in:
parent
90e3d64f35
commit
f9af20a555
@ -0,0 +1,144 @@
|
|||||||
|
package cc.niushuai.project.devcontrol.base.entity.device;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import cc.niushuai.project.devcontrol.base.enums.DeviceTypeEnum;
|
||||||
|
import cn.hutool.core.util.IdUtil;
|
||||||
|
import cn.hutool.core.util.StrUtil;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备信息实体数据类
|
||||||
|
*
|
||||||
|
* @author niushuai
|
||||||
|
* @date: 2022/10/17 16:47
|
||||||
|
*/
|
||||||
|
public class DeviceInfo {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主id 唯一标识
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备名称
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备类型
|
||||||
|
*/
|
||||||
|
private DeviceTypeEnum type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备描述信息
|
||||||
|
*/
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设备列表界面 list icon id
|
||||||
|
*/
|
||||||
|
private int iconId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* 二进制文件存放位置
|
||||||
|
* /文件夹/二进制文件 参数
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
private String commandPath;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* 执行命令 参数
|
||||||
|
* /文件夹/二进制文件 参数
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
private String commandArgs;
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public DeviceTypeEnum getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setType(DeviceTypeEnum type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDescription() {
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDescription(String description) {
|
||||||
|
this.description = description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getIconId() {
|
||||||
|
return iconId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIconId(int listIconId) {
|
||||||
|
this.iconId = listIconId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCommandPath() {
|
||||||
|
return commandPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCommandPath(String commandPath) {
|
||||||
|
this.commandPath = commandPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCommandArgs() {
|
||||||
|
return commandArgs;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCommandArgs(String commandArgs) {
|
||||||
|
this.commandArgs = commandArgs;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFullCommandArgs() {
|
||||||
|
return StrUtil.join(StrUtil.SPACE, this.getCommandPath(), StrUtil.SPACE, this.getCommandArgs());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* mock 假数据
|
||||||
|
*
|
||||||
|
* @author niushuai
|
||||||
|
* @date: 2022/10/17 17:02
|
||||||
|
* @return: {@link List<DeviceInfo>}
|
||||||
|
*/
|
||||||
|
public static List<DeviceInfo> mock(int size, int iconId) {
|
||||||
|
List<DeviceInfo> list = new ArrayList<>();
|
||||||
|
|
||||||
|
for (int i = 0; i < size; i++) {
|
||||||
|
DeviceInfo device = new DeviceInfo();
|
||||||
|
device.setId(IdUtil.nanoId());
|
||||||
|
device.setName("卧室灯开关" + (i + 1));
|
||||||
|
device.setIconId(iconId);
|
||||||
|
device.setDescription("卧室灯开关-树莓派");
|
||||||
|
device.setType(DeviceTypeEnum.Switch);
|
||||||
|
device.setCommandPath("/path/file");
|
||||||
|
device.setCommandArgs("-c light -t 1");
|
||||||
|
list.add(device);
|
||||||
|
}
|
||||||
|
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user