wangting
2025-01-16 18c43123b51a1688ab4ae01fe3d171c7d92e619b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
    }
 
}