You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.1 KiB
71 lines
1.1 KiB
package com.platform.form;
|
|
|
|
import java.util.List;
|
|
|
|
import com.platform.entities.DataInfoEntity;
|
|
import com.platform.entities.FolderNode;
|
|
|
|
/**迁移数据--接收前端传值
|
|
* @author chen
|
|
*
|
|
*/
|
|
public class volumeMoveForm {
|
|
|
|
/**
|
|
* volume名
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 目录
|
|
*/
|
|
private FolderNode selectNode;
|
|
|
|
/**
|
|
* 数据对象
|
|
*/
|
|
private List<DataInfoEntity> selectItems;
|
|
|
|
/**
|
|
* @return the name
|
|
*/
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
/**
|
|
* @param name the name to set
|
|
*/
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
/**
|
|
* @return the selectNode
|
|
*/
|
|
public FolderNode getSelectNode() {
|
|
return selectNode;
|
|
}
|
|
|
|
/**
|
|
* @param selectNode the selectNode to set
|
|
*/
|
|
public void setSelectNode(FolderNode selectNode) {
|
|
this.selectNode = selectNode;
|
|
}
|
|
|
|
/**
|
|
* @return the selectItems
|
|
*/
|
|
public List<DataInfoEntity> getSelectItems() {
|
|
return selectItems;
|
|
}
|
|
|
|
/**
|
|
* @param selectItems the selectItems to set
|
|
*/
|
|
public void setSelectItems(List<DataInfoEntity> selectItems) {
|
|
this.selectItems = selectItems;
|
|
}
|
|
}
|