package com.lotaai.canguiayw.sqllitedb;
|
|
import android.database.Cursor;
|
import android.database.sqlite.SQLiteStatement;
|
|
import org.greenrobot.greendao.AbstractDao;
|
import org.greenrobot.greendao.Property;
|
import org.greenrobot.greendao.internal.DaoConfig;
|
import org.greenrobot.greendao.database.Database;
|
import org.greenrobot.greendao.database.DatabaseStatement;
|
|
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
|
/**
|
* DAO for table "GRID_MODEL".
|
*/
|
public class GridModelDao extends AbstractDao<GridModel, Long> {
|
|
public static final String TABLENAME = "GRID_MODEL";
|
|
/**
|
* Properties of entity GridModel.<br/>
|
* Can be used for QueryBuilder and for referencing column names.
|
*/
|
public static class Properties {
|
public final static Property Id = new Property(0, Long.class, "id", true, "_id");
|
public final static Property GuiHao = new Property(1, int.class, "guiHao", false, "GUI_HAO");
|
public final static Property GridNo = new Property(2, int.class, "gridNo", false, "GRID_NO");
|
public final static Property State = new Property(3, int.class, "state", false, "STATE");
|
}
|
|
|
public GridModelDao(DaoConfig config) {
|
super(config);
|
}
|
|
public GridModelDao(DaoConfig config, DaoSession daoSession) {
|
super(config, daoSession);
|
}
|
|
/** Creates the underlying database table. */
|
public static void createTable(Database db, boolean ifNotExists) {
|
String constraint = ifNotExists? "IF NOT EXISTS ": "";
|
db.execSQL("CREATE TABLE " + constraint + "\"GRID_MODEL\" (" + //
|
"\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id
|
"\"GUI_HAO\" INTEGER NOT NULL ," + // 1: guiHao
|
"\"GRID_NO\" INTEGER NOT NULL ," + // 2: gridNo
|
"\"STATE\" INTEGER NOT NULL );"); // 3: state
|
}
|
|
/** Drops the underlying database table. */
|
public static void dropTable(Database db, boolean ifExists) {
|
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"GRID_MODEL\"";
|
db.execSQL(sql);
|
}
|
|
@Override
|
protected final void bindValues(DatabaseStatement stmt, GridModel entity) {
|
stmt.clearBindings();
|
|
Long id = entity.getId();
|
if (id != null) {
|
stmt.bindLong(1, id);
|
}
|
stmt.bindLong(2, entity.getGuiHao());
|
stmt.bindLong(3, entity.getGridNo());
|
stmt.bindLong(4, entity.getState());
|
}
|
|
@Override
|
protected final void bindValues(SQLiteStatement stmt, GridModel entity) {
|
stmt.clearBindings();
|
|
Long id = entity.getId();
|
if (id != null) {
|
stmt.bindLong(1, id);
|
}
|
stmt.bindLong(2, entity.getGuiHao());
|
stmt.bindLong(3, entity.getGridNo());
|
stmt.bindLong(4, entity.getState());
|
}
|
|
@Override
|
public Long readKey(Cursor cursor, int offset) {
|
return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
|
}
|
|
@Override
|
public GridModel readEntity(Cursor cursor, int offset) {
|
GridModel entity = new GridModel( //
|
cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
|
cursor.getInt(offset + 1), // guiHao
|
cursor.getInt(offset + 2), // gridNo
|
cursor.getInt(offset + 3) // state
|
);
|
return entity;
|
}
|
|
@Override
|
public void readEntity(Cursor cursor, GridModel entity, int offset) {
|
entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
|
entity.setGuiHao(cursor.getInt(offset + 1));
|
entity.setGridNo(cursor.getInt(offset + 2));
|
entity.setState(cursor.getInt(offset + 3));
|
}
|
|
@Override
|
protected final Long updateKeyAfterInsert(GridModel entity, long rowId) {
|
entity.setId(rowId);
|
return rowId;
|
}
|
|
@Override
|
public Long getKey(GridModel entity) {
|
if(entity != null) {
|
return entity.getId();
|
} else {
|
return null;
|
}
|
}
|
|
@Override
|
public boolean hasKey(GridModel entity) {
|
return entity.getId() != null;
|
}
|
|
@Override
|
protected final boolean isEntityUpdateable() {
|
return true;
|
}
|
|
}
|