package com.ping.greendao.gen; 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; import cn.flightfeather.thirdapp.bean.entity.Domaincatalog; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "DOMAINCATALOG". */ public class DomaincatalogDao extends AbstractDao { public static final String TABLENAME = "DOMAINCATALOG"; /** * Properties of entity Domaincatalog.
* Can be used for QueryBuilder and for referencing column names. */ public static class Properties { public final static Property Guid = new Property(0, String.class, "guid", true, "GUID"); public final static Property Name = new Property(1, String.class, "name", false, "NAME"); public final static Property Capacity = new Property(2, Integer.class, "capacity", false, "CAPACITY"); public final static Property Version = new Property(3, Integer.class, "version", false, "VERSION"); } public DomaincatalogDao(DaoConfig config) { super(config); } public DomaincatalogDao(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 + "\"DOMAINCATALOG\" (" + // "\"GUID\" TEXT PRIMARY KEY NOT NULL ," + // 0: guid "\"NAME\" TEXT," + // 1: name "\"CAPACITY\" INTEGER," + // 2: capacity "\"VERSION\" INTEGER);"); // 3: version } /** Drops the underlying database table. */ public static void dropTable(Database db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"DOMAINCATALOG\""; db.execSQL(sql); } @Override protected final void bindValues(DatabaseStatement stmt, Domaincatalog entity) { stmt.clearBindings(); String guid = entity.getGuid(); if (guid != null) { stmt.bindString(1, guid); } String name = entity.getName(); if (name != null) { stmt.bindString(2, name); } Integer capacity = entity.getCapacity(); if (capacity != null) { stmt.bindLong(3, capacity); } Integer version = entity.getVersion(); if (version != null) { stmt.bindLong(4, version); } } @Override protected final void bindValues(SQLiteStatement stmt, Domaincatalog entity) { stmt.clearBindings(); String guid = entity.getGuid(); if (guid != null) { stmt.bindString(1, guid); } String name = entity.getName(); if (name != null) { stmt.bindString(2, name); } Integer capacity = entity.getCapacity(); if (capacity != null) { stmt.bindLong(3, capacity); } Integer version = entity.getVersion(); if (version != null) { stmt.bindLong(4, version); } } @Override public String readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0); } @Override public Domaincatalog readEntity(Cursor cursor, int offset) { Domaincatalog entity = new Domaincatalog( // cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0), // guid cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // name cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2), // capacity cursor.isNull(offset + 3) ? null : cursor.getInt(offset + 3) // version ); return entity; } @Override public void readEntity(Cursor cursor, Domaincatalog entity, int offset) { entity.setGuid(cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0)); entity.setName(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1)); entity.setCapacity(cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2)); entity.setVersion(cursor.isNull(offset + 3) ? null : cursor.getInt(offset + 3)); } @Override protected final String updateKeyAfterInsert(Domaincatalog entity, long rowId) { return entity.getGuid(); } @Override public String getKey(Domaincatalog entity) { if(entity != null) { return entity.getGuid(); } else { return null; } } @Override public boolean hasKey(Domaincatalog entity) { return entity.getGuid() != null; } @Override protected final boolean isEntityUpdateable() { return true; } }