moved deprecated modules
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.example.demo;
|
||||
|
||||
public class Address {
|
||||
|
||||
private long id;
|
||||
|
||||
private String street;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getStreet() {
|
||||
return street;
|
||||
}
|
||||
|
||||
public void setStreet(String street) {
|
||||
this.street = street;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user