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