资 源 简 介
## This project is based on Java, is a lightweight ORM model. ##
### Only concerned about the Object-Relationl Mapping, therefore more simple and easier to use, easier to control. ###
**Key support functions and features:**
Object-relational mapping;
Two kinds of mechanisms to automatically generate primary key (numeric field) value;
Hibernate support, and a similar sample of queries;
Support additional SQL clause, an extension of inquiries;
Support for optimistic locking;
A rich set of tools for SQL statements;
### Model Sample ###
```
@JormEntity (table = "PEOPLE")
public class Person implements Serializable {
...
@JormMap (
primaryKey = true,
autoGenerate = GenerateMethod.Increase
)
private int id;
@JormMap
private String name;
@JormMap
private String sex;
@JormMap
private Date birth;
@JormMap(col