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.Town; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "TOWN". */ public class TownDao extends AbstractDao { public static final String TABLENAME = "TOWN"; /** * Properties of entity Town.
* Can be used for QueryBuilder and for referencing column names. */ public static class Properties { public final static Property Townid = new Property(0, Long.class, "townid", true, "_id"); public final static Property Districtid = new Property(1, Long.class, "districtid", false, "DISTRICTID"); public final static Property Cityid = new Property(2, Long.class, "cityid", false, "CITYID"); public final static Property Provinceid = new Property(3, Long.class, "provinceid", false, "PROVINCEID"); public final static Property Towncode = new Property(4, String.class, "towncode", false, "TOWNCODE"); public final static Property Townname = new Property(5, String.class, "townname", false, "TOWNNAME"); public final static Property Station = new Property(6, String.class, "station", false, "STATION"); } public TownDao(DaoConfig config) { super(config); } public TownDao(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 + "\"TOWN\" (" + // "\"_id\" INTEGER PRIMARY KEY ," + // 0: townid "\"DISTRICTID\" INTEGER," + // 1: districtid "\"CITYID\" INTEGER," + // 2: cityid "\"PROVINCEID\" INTEGER," + // 3: provinceid "\"TOWNCODE\" TEXT," + // 4: towncode "\"TOWNNAME\" TEXT," + // 5: townname "\"STATION\" TEXT);"); // 6: station } /** Drops the underlying database table. */ public static void dropTable(Database db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"TOWN\""; db.execSQL(sql); } @Override protected final void bindValues(DatabaseStatement stmt, Town entity) { stmt.clearBindings(); Long townid = entity.getTownid(); if (townid != null) { stmt.bindLong(1, townid); } Long districtid = entity.getDistrictid(); if (districtid != null) { stmt.bindLong(2, districtid); } Long cityid = entity.getCityid(); if (cityid != null) { stmt.bindLong(3, cityid); } Long provinceid = entity.getProvinceid(); if (provinceid != null) { stmt.bindLong(4, provinceid); } String towncode = entity.getTowncode(); if (towncode != null) { stmt.bindString(5, towncode); } String townname = entity.getTownname(); if (townname != null) { stmt.bindString(6, townname); } String station = entity.getStation(); if (station != null) { stmt.bindString(7, station); } } @Override protected final void bindValues(SQLiteStatement stmt, Town entity) { stmt.clearBindings(); Long townid = entity.getTownid(); if (townid != null) { stmt.bindLong(1, townid); } Long districtid = entity.getDistrictid(); if (districtid != null) { stmt.bindLong(2, districtid); } Long cityid = entity.getCityid(); if (cityid != null) { stmt.bindLong(3, cityid); } Long provinceid = entity.getProvinceid(); if (provinceid != null) { stmt.bindLong(4, provinceid); } String towncode = entity.getTowncode(); if (towncode != null) { stmt.bindString(5, towncode); } String townname = entity.getTownname(); if (townname != null) { stmt.bindString(6, townname); } String station = entity.getStation(); if (station != null) { stmt.bindString(7, station); } } @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } @Override public Town readEntity(Cursor cursor, int offset) { Town entity = new Town( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // townid cursor.isNull(offset + 1) ? null : cursor.getLong(offset + 1), // districtid cursor.isNull(offset + 2) ? null : cursor.getLong(offset + 2), // cityid cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3), // provinceid cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4), // towncode cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5), // townname cursor.isNull(offset + 6) ? null : cursor.getString(offset + 6) // station ); return entity; } @Override public void readEntity(Cursor cursor, Town entity, int offset) { entity.setTownid(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setDistrictid(cursor.isNull(offset + 1) ? null : cursor.getLong(offset + 1)); entity.setCityid(cursor.isNull(offset + 2) ? null : cursor.getLong(offset + 2)); entity.setProvinceid(cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3)); entity.setTowncode(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4)); entity.setTownname(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5)); entity.setStation(cursor.isNull(offset + 6) ? null : cursor.getString(offset + 6)); } @Override protected final Long updateKeyAfterInsert(Town entity, long rowId) { entity.setTownid(rowId); return rowId; } @Override public Long getKey(Town entity) { if(entity != null) { return entity.getTownid(); } else { return null; } } @Override public boolean hasKey(Town entity) { return entity.getTownid() != null; } @Override protected final boolean isEntityUpdateable() { return true; } }