mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
34 lines
500 B
Java
34 lines
500 B
Java
package org.tests.merge;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
@Entity
|
|
public class MAddress extends MBase {
|
|
|
|
private String street;
|
|
|
|
private String city;
|
|
|
|
public MAddress(String street, String city) {
|
|
this.street = street;
|
|
this.city = city;
|
|
}
|
|
|
|
public String getStreet() {
|
|
return street;
|
|
}
|
|
|
|
public void setStreet(String street) {
|
|
this.street = street;
|
|
}
|
|
|
|
public String getCity() {
|
|
return city;
|
|
}
|
|
|
|
public void setCity(String city) {
|
|
this.city = city;
|
|
}
|
|
|
|
}
|