-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutageDetials.java
More file actions
55 lines (40 loc) · 828 Bytes
/
outageDetials.java
File metadata and controls
55 lines (40 loc) · 828 Bytes
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
import java.util.Date;
public class outageDetials {
private String Customer_Key;
private Date start;
private Date end;
private String durration;
private String weather;
public outageDetials() {
}
public String getCustomer_Key() {
return Customer_Key;
}
public void setCustomer_Key(String customer_Key) {
Customer_Key = customer_Key;
}
public Date getStart() {
return start;
}
public void setStart(Date start) {
this.start = start;
}
public Date getEnd() {
return end;
}
public void setEnd(Date end) {
this.end = end;
}
public String getDurration() {
return durration;
}
public void setDurration(String durration) {
this.durration = durration;
}
public String getWeather() {
return weather;
}
public void setWeather(String weather) {
this.weather = weather;
}
}