java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
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
package com.java110.dto.trace;
 
public class TraceEndpointDto {
 
    private String serviceName;
    private String ipv4;
    private String port;
 
    public String getServiceName() {
        return serviceName;
    }
 
    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }
 
    public String getIpv4() {
        return ipv4;
    }
 
    public void setIpv4(String ipv4) {
        this.ipv4 = ipv4;
    }
 
    public String getPort() {
        return port;
    }
 
    public void setPort(String port) {
        this.port = port;
    }
}