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.thirdappmodule.bean.entity.MediaTypeAlias; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "MEDIA_TYPE_ALIAS". */ public class MediaTypeAliasDao extends AbstractDao { public static final String TABLENAME = "MEDIA_TYPE_ALIAS"; /** * Properties of entity MediaTypeAlias.
* 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 SceneTypeId = new Property(1, int.class, "sceneTypeId", false, "SCENE_TYPE_ID"); public final static Property TypeId = new Property(2, int.class, "typeId", false, "TYPE_ID"); public final static Property TypeName = new Property(3, String.class, "typeName", false, "TYPE_NAME"); public final static Property Alias = new Property(4, String.class, "alias", false, "ALIAS"); } public MediaTypeAliasDao(DaoConfig config) { super(config); } public MediaTypeAliasDao(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 + "\"MEDIA_TYPE_ALIAS\" (" + // "\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id "\"SCENE_TYPE_ID\" INTEGER NOT NULL ," + // 1: sceneTypeId "\"TYPE_ID\" INTEGER NOT NULL ," + // 2: typeId "\"TYPE_NAME\" TEXT," + // 3: typeName "\"ALIAS\" TEXT);"); // 4: alias } /** Drops the underlying database table. */ public static void dropTable(Database db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"MEDIA_TYPE_ALIAS\""; db.execSQL(sql); } @Override protected final void bindValues(DatabaseStatement stmt, MediaTypeAlias entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindLong(2, entity.getSceneTypeId()); stmt.bindLong(3, entity.getTypeId()); String typeName = entity.getTypeName(); if (typeName != null) { stmt.bindString(4, typeName); } String alias = entity.getAlias(); if (alias != null) { stmt.bindString(5, alias); } } @Override protected final void bindValues(SQLiteStatement stmt, MediaTypeAlias entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindLong(2, entity.getSceneTypeId()); stmt.bindLong(3, entity.getTypeId()); String typeName = entity.getTypeName(); if (typeName != null) { stmt.bindString(4, typeName); } String alias = entity.getAlias(); if (alias != null) { stmt.bindString(5, alias); } } @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } @Override public MediaTypeAlias readEntity(Cursor cursor, int offset) { MediaTypeAlias entity = new MediaTypeAlias( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.getInt(offset + 1), // sceneTypeId cursor.getInt(offset + 2), // typeId cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3), // typeName cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4) // alias ); return entity; } @Override public void readEntity(Cursor cursor, MediaTypeAlias entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setSceneTypeId(cursor.getInt(offset + 1)); entity.setTypeId(cursor.getInt(offset + 2)); entity.setTypeName(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3)); entity.setAlias(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4)); } @Override protected final Long updateKeyAfterInsert(MediaTypeAlias entity, long rowId) { entity.setId(rowId); return rowId; } @Override public Long getKey(MediaTypeAlias entity) { if(entity != null) { return entity.getId(); } else { return null; } } @Override public boolean hasKey(MediaTypeAlias entity) { return entity.getId() != null; } @Override protected final boolean isEntityUpdateable() { return true; } }