mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
22 lines
308 B
Java
22 lines
308 B
Java
package com.avaje.tests.model.softdelete;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
@Entity
|
|
public class ESoftDelUp extends BaseSoftDelete {
|
|
|
|
String up;
|
|
|
|
public ESoftDelUp(String up) {
|
|
this.up = up;
|
|
}
|
|
|
|
public String getUp() {
|
|
return up;
|
|
}
|
|
|
|
public void setUp(String up) {
|
|
this.up = up;
|
|
}
|
|
}
|