FWBAssociatedParty.java
2.3 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.example.demo.model;
import java.time.LocalDate;
public class FWBAssociatedParty {
private Integer id;
private String primaryid;
private String name;
private String accountid;
private String rolecode;
private String role;
private String cityname;
private String countryid;
private String awbnumber;
private LocalDate flightdate;
private String flightnumber;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPrimaryid() {
return primaryid;
}
public void setPrimaryid(String primaryid) {
this.primaryid = primaryid == null ? null : primaryid.trim();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public String getAccountid() {
return accountid;
}
public void setAccountid(String accountid) {
this.accountid = accountid == null ? null : accountid.trim();
}
public String getRolecode() {
return rolecode;
}
public void setRolecode(String rolecode) {
this.rolecode = rolecode == null ? null : rolecode.trim();
}
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role == null ? null : role.trim();
}
public String getCityname() {
return cityname;
}
public void setCityname(String cityname) {
this.cityname = cityname == null ? null : cityname.trim();
}
public String getCountryid() {
return countryid;
}
public void setCountryid(String countryid) {
this.countryid = countryid == null ? null : countryid.trim();
}
public String getAwbnumber() {
return awbnumber;
}
public void setAwbnumber(String awbnumber) {
this.awbnumber = awbnumber == null ? null : awbnumber.trim();
}
public LocalDate getFlightdate() {
return flightdate;
}
public void setFlightdate(LocalDate flightdate) {
this.flightdate = flightdate;
}
public String getFlightnumber() {
return flightnumber;
}
public void setFlightnumber(String flightnumber) {
this.flightnumber = flightnumber == null ? null : flightnumber.trim();
}
}