mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
271 B
Java
19 lines
271 B
Java
package org.example.domain;
|
|
|
|
import org.example.domain.api.ACountry;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
public class CountryImpl implements ACountry {
|
|
|
|
@Id
|
|
String code;
|
|
|
|
@Override
|
|
public String code() {
|
|
return code;
|
|
}
|
|
}
|