Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 376 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 376 Bytes

MicroAndroidORM

MIT License

@ORMTable(TableName="TestEntityTable")
public class TestEntity {
    @ORMField(Name = "ID", isPrimaryKey = true)
    private int id = 0;//Initialization is recommended for ORM ***very important***

    @ORMField(Name="Name",isUnique=true)
    private String name="";

    @ORMField(Name="InsertionDate")
    private String date="";
}