package com.lotaai.canguiayw.sqllitedb;
|
|
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;
|
|
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
|
/**
|
* DAO for table "ORDER_DETAIL".
|
*/
|
public class OrderDetailDao extends AbstractDao<OrderDetail, Long> {
|
|
public static final String TABLENAME = "ORDER_DETAIL";
|
|
/**
|
* Properties of entity OrderDetail.<br/>
|
* 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 OrderNo = new Property(1, String.class, "orderNo", false, "ORDER_NO");
|
public final static Property ItemName = new Property(2, String.class, "itemName", false, "ITEM_NAME");
|
public final static Property Num = new Property(3, int.class, "num", false, "NUM");
|
}
|
|
|
public OrderDetailDao(DaoConfig config) {
|
super(config);
|
}
|
|
public OrderDetailDao(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 + "\"ORDER_DETAIL\" (" + //
|
"\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id
|
"\"ORDER_NO\" TEXT NOT NULL ," + // 1: orderNo
|
"\"ITEM_NAME\" TEXT," + // 2: itemName
|
"\"NUM\" INTEGER NOT NULL );"); // 3: num
|
}
|
|
/** Drops the underlying database table. */
|
public static void dropTable(Database db, boolean ifExists) {
|
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"ORDER_DETAIL\"";
|
db.execSQL(sql);
|
}
|
|
@Override
|
protected final void bindValues(DatabaseStatement stmt, OrderDetail entity) {
|
stmt.clearBindings();
|
|
Long id = entity.getId();
|
if (id != null) {
|
stmt.bindLong(1, id);
|
}
|
stmt.bindString(2, entity.getOrderNo());
|
|
String itemName = entity.getItemName();
|
if (itemName != null) {
|
stmt.bindString(3, itemName);
|
}
|
stmt.bindLong(4, entity.getNum());
|
}
|
|
@Override
|
protected final void bindValues(SQLiteStatement stmt, OrderDetail entity) {
|
stmt.clearBindings();
|
|
Long id = entity.getId();
|
if (id != null) {
|
stmt.bindLong(1, id);
|
}
|
stmt.bindString(2, entity.getOrderNo());
|
|
String itemName = entity.getItemName();
|
if (itemName != null) {
|
stmt.bindString(3, itemName);
|
}
|
stmt.bindLong(4, entity.getNum());
|
}
|
|
@Override
|
public Long readKey(Cursor cursor, int offset) {
|
return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
|
}
|
|
@Override
|
public OrderDetail readEntity(Cursor cursor, int offset) {
|
OrderDetail entity = new OrderDetail( //
|
cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
|
cursor.getString(offset + 1), // orderNo
|
cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // itemName
|
cursor.getInt(offset + 3) // num
|
);
|
return entity;
|
}
|
|
@Override
|
public void readEntity(Cursor cursor, OrderDetail entity, int offset) {
|
entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
|
entity.setOrderNo(cursor.getString(offset + 1));
|
entity.setItemName(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2));
|
entity.setNum(cursor.getInt(offset + 3));
|
}
|
|
@Override
|
protected final Long updateKeyAfterInsert(OrderDetail entity, long rowId) {
|
entity.setId(rowId);
|
return rowId;
|
}
|
|
@Override
|
public Long getKey(OrderDetail entity) {
|
if(entity != null) {
|
return entity.getId();
|
} else {
|
return null;
|
}
|
}
|
|
@Override
|
public boolean hasKey(OrderDetail entity) {
|
return entity.getId() != null;
|
}
|
|
@Override
|
protected final boolean isEntityUpdateable() {
|
return true;
|
}
|
|
}
|