终端文件提交
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.njcn.device.biz.pojo.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class TerminalSelectTreeVO implements Serializable {
|
||||
|
||||
private String value;
|
||||
|
||||
private String label;
|
||||
|
||||
private List<TerminalSelectTreeVO> children = new ArrayList<>();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user