package com.jiuqi.mobile.core.service.db; import java.io.Serializable; import com.jqmobile.core.orm.DBColumn; import com.jqmobile.core.orm.DBTable; @DBTable(name="T_TABLE_CREAT_TEST") public class TableCreatTest implements Serializable{ /** * */ @DBColumn(mapping=false) private static final long serialVersionUID = -886383344702915130L; @DBColumn(primaryId=true) private String recid; private int age; private Toy toy; public String getRecid() { return recid; } public void setRecid(String recid) { this.recid = recid; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public Toy getToy() { return toy; } public void setToy(Toy toy) { this.toy = toy; } }