New file |
| | |
| | | package com.hdl.linkpm.sdk.template.bean;/* |
| | | *create by wxr |
| | | *date 2022/3/1 |
| | | */ |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | public class TemplateDeviceExtInfoBean implements Serializable { |
| | | private List<String> deviceDir = new ArrayList<>(); |
| | | |
| | | private HashMap<String,String> deviceCommand = new HashMap<>(); |
| | | |
| | | public List<String> getDeviceDir() { |
| | | if (deviceDir == null) { |
| | | return new ArrayList<>(); |
| | | } |
| | | return deviceDir; |
| | | } |
| | | |
| | | public void setDeviceDir(List<String> deviceDir) { |
| | | this.deviceDir = deviceDir; |
| | | } |
| | | |
| | | public HashMap<String, String> getDeviceCommand() { |
| | | return deviceCommand; |
| | | } |
| | | |
| | | public void setDeviceCommand(HashMap<String, String> deviceCommand) { |
| | | this.deviceCommand = deviceCommand; |
| | | } |
| | | |
| | | } |