package com.zhitan.model.domain;
|
|
public class IndexStorageParam {
|
|
private String storageId;
|
private String indexId;
|
|
public String getStorageId() {
|
return storageId;
|
}
|
|
public void setStorageId(String storageId) {
|
this.storageId = storageId;
|
}
|
|
public String getIndexId() {
|
return indexId;
|
}
|
|
public void setIndexId(String indexId) {
|
this.indexId = indexId;
|
}
|
}
|