package org.greenrobot.greendao.unittest;
import org.greenrobot.greendao.annotation.*;
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit.
/**
* Entity mapped to table "MINIMAL_ENTITY".
*/
@Entity
public class MinimalEntity {
@Id
private Long id;
@Generated
public MinimalEntity() {
}
@Generated
public MinimalEntity(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}