package org.greenrobot.greendao.daotest;
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 "AUTOINCREMENT_ENTITY".
*/
@Entity
public class AutoincrementEntity {
@Id(autoincrement = true)
private Long id;
@Generated
public AutoincrementEntity() {
}
@Generated
public AutoincrementEntity(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}