#
whycq
2025-01-20 1a6230570a8f1419173b2ecd22548cc01ab08195
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.example.agvcontroller;
 
public class Item {
    private String clientId;
    private String ip;
    private int port;
    private String agvNo;
    private int status;
 
    public Item(String clientId,String ip,int port,String agvNo,int status) {
        this.clientId = clientId;
        this.ip = ip;
        this.port = port;
        this.agvNo = agvNo;
        this.status = status;
    }
    public String getClientId() {return clientId; }
 
    public String getIp() {
        return ip;
    }
 
    public int getPort() {
        return port;
    }
 
 
    public String getAgvNo() {
        return agvNo;
    }
 
    public int getStatus() {
        return status;
    }
 
 
    public void setClientId(String clientId) {
        this.clientId = clientId;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public void setPort(int port) {
        this.port = port;
    }
 
 
    public void setAgvNo(String agvNo) {
        this.agvNo = agvNo;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
}