public SmartHome(int a, String b, int c, Timestamp d){
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
public int getA() {
return a;
}
public String getB() {
return b;
}
public int getC() {
return c;
}
public Timestamp getD() {
return d;
}
}
- 282 -