package com.vci.dbsync.entity; public class VMInfo { //CORBA主机 private String url; // 服务Identity private String identity; // 卷服务 private String service; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getIdentity() { return identity; } public void setIdentity(String identity) { this.identity = identity; } public String getService() { return service; } public void setService(String service) { this.service = service; } }