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.City; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "CITY". */ public class CityDao extends AbstractDao { public static final String TABLENAME = "CITY"; /** * Properties of entity City.
* Can be used for QueryBuilder and for referencing column names. */ public static class Properties { public final static Property CityId = new Property(0, Long.class, "cityId", true, "_id"); public final static Property Pronvinceid = new Property(1, Long.class, "pronvinceid", false, "PRONVINCEID"); public final static Property Citycode = new Property(2, String.class, "citycode", false, "CITYCODE"); public final static Property Cityname = new Property(3, String.class, "cityname", false, "CITYNAME"); public final static Property Station = new Property(4, String.class, "station", false, "STATION"); } public CityDao(DaoConfig config) { super(config); } public CityDao(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 + "\"CITY\" (" + // "\"_id\" INTEGER PRIMARY KEY ," + // 0: cityId "\"PRONVINCEID\" INTEGER," + // 1: pronvinceid "\"CITYCODE\" TEXT," + // 2: citycode "\"CITYNAME\" TEXT," + // 3: cityname "\"STATION\" TEXT);"); // 4: station } /** Drops the underlying database table. */ public static void dropTable(Database db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"CITY\""; db.execSQL(sql); } @Override protected final void bindValues(DatabaseStatement stmt, City entity) { stmt.clearBindings(); Long cityId = entity.getCityId(); if (cityId != null) { stmt.bindLong(1, cityId); } Long pronvinceid = entity.getPronvinceid(); if (pronvinceid != null) { stmt.bindLong(2, pronvinceid); } String citycode = entity.getCitycode(); if (citycode != null) { stmt.bindString(3, citycode); } String cityname = entity.getCityname(); if (cityname != null) { stmt.bindString(4, cityname); } String station = entity.getStation(); if (station != null) { stmt.bindString(5, station); } } @Override protected final void bindValues(SQLiteStatement stmt, City entity) { stmt.clearBindings(); Long cityId = entity.getCityId(); if (cityId != null) { stmt.bindLong(1, cityId); } Long pronvinceid = entity.getPronvinceid(); if (pronvinceid != null) { stmt.bindLong(2, pronvinceid); } String citycode = entity.getCitycode(); if (citycode != null) { stmt.bindString(3, citycode); } String cityname = entity.getCityname(); if (cityname != null) { stmt.bindString(4, cityname); } String station = entity.getStation(); if (station != null) { stmt.bindString(5, station); } } @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } @Override public City readEntity(Cursor cursor, int offset) { City entity = new City( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // cityId cursor.isNull(offset + 1) ? null : cursor.getLong(offset + 1), // pronvinceid cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // citycode cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3), // cityname cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4) // station ); return entity; } @Override public void readEntity(Cursor cursor, City entity, int offset) { entity.setCityId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setPronvinceid(cursor.isNull(offset + 1) ? null : cursor.getLong(offset + 1)); entity.setCitycode(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2)); entity.setCityname(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3)); entity.setStation(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4)); } @Override protected final Long updateKeyAfterInsert(City entity, long rowId) { entity.setCityId(rowId); return rowId; } @Override public Long getKey(City entity) { if(entity != null) { return entity.getCityId(); } else { return null; } } @Override public boolean hasKey(City entity) { return entity.getCityId() != null; } @Override protected final boolean isEntityUpdateable() { return true; } }