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.Province;
|
|
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
|
/**
|
* DAO for table "PROVINCE".
|
*/
|
public class ProvinceDao extends AbstractDao<Province, Long> {
|
|
public static final String TABLENAME = "PROVINCE";
|
|
/**
|
* Properties of entity Province.<br/>
|
* Can be used for QueryBuilder and for referencing column names.
|
*/
|
public static class Properties {
|
public final static Property Provinceid = new Property(0, Long.class, "provinceid", true, "_id");
|
public final static Property Provincecode = new Property(1, String.class, "provincecode", false, "PROVINCECODE");
|
public final static Property Provincename = new Property(2, String.class, "provincename", false, "PROVINCENAME");
|
}
|
|
|
public ProvinceDao(DaoConfig config) {
|
super(config);
|
}
|
|
public ProvinceDao(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 + "\"PROVINCE\" (" + //
|
"\"_id\" INTEGER PRIMARY KEY ," + // 0: provinceid
|
"\"PROVINCECODE\" TEXT," + // 1: provincecode
|
"\"PROVINCENAME\" TEXT);"); // 2: provincename
|
}
|
|
/** Drops the underlying database table. */
|
public static void dropTable(Database db, boolean ifExists) {
|
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"PROVINCE\"";
|
db.execSQL(sql);
|
}
|
|
@Override
|
protected final void bindValues(DatabaseStatement stmt, Province entity) {
|
stmt.clearBindings();
|
|
Long provinceid = entity.getProvinceid();
|
if (provinceid != null) {
|
stmt.bindLong(1, provinceid);
|
}
|
|
String provincecode = entity.getProvincecode();
|
if (provincecode != null) {
|
stmt.bindString(2, provincecode);
|
}
|
|
String provincename = entity.getProvincename();
|
if (provincename != null) {
|
stmt.bindString(3, provincename);
|
}
|
}
|
|
@Override
|
protected final void bindValues(SQLiteStatement stmt, Province entity) {
|
stmt.clearBindings();
|
|
Long provinceid = entity.getProvinceid();
|
if (provinceid != null) {
|
stmt.bindLong(1, provinceid);
|
}
|
|
String provincecode = entity.getProvincecode();
|
if (provincecode != null) {
|
stmt.bindString(2, provincecode);
|
}
|
|
String provincename = entity.getProvincename();
|
if (provincename != null) {
|
stmt.bindString(3, provincename);
|
}
|
}
|
|
@Override
|
public Long readKey(Cursor cursor, int offset) {
|
return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
|
}
|
|
@Override
|
public Province readEntity(Cursor cursor, int offset) {
|
Province entity = new Province( //
|
cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // provinceid
|
cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // provincecode
|
cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2) // provincename
|
);
|
return entity;
|
}
|
|
@Override
|
public void readEntity(Cursor cursor, Province entity, int offset) {
|
entity.setProvinceid(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
|
entity.setProvincecode(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
|
entity.setProvincename(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2));
|
}
|
|
@Override
|
protected final Long updateKeyAfterInsert(Province entity, long rowId) {
|
entity.setProvinceid(rowId);
|
return rowId;
|
}
|
|
@Override
|
public Long getKey(Province entity) {
|
if(entity != null) {
|
return entity.getProvinceid();
|
} else {
|
return null;
|
}
|
}
|
|
@Override
|
public boolean hasKey(Province entity) {
|
return entity.getProvinceid() != null;
|
}
|
|
@Override
|
protected final boolean isEntityUpdateable() {
|
return true;
|
}
|
|
}
|