| | |
| | | * 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 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 GridNo = new Property(2, String.class, "gridNo", false, "GRID_NO"); |
| | | public final static Property State = new Property(3, int.class, "state", false, "STATE"); |
| | | public final static Property PutInDate = new Property(4, long.class, "putInDate", false, "PUT_IN_DATE"); |
| | | public final static Property PutInDate = new Property(4, String.class, "putInDate", false, "PUT_IN_DATE"); |
| | | public final static Property TakeCode = new Property(5, String.class, "takeCode", false, "TAKE_CODE"); |
| | | } |
| | | |
| | |
| | | public static void createTable(Database db, boolean ifNotExists) { |
| | | String constraint = ifNotExists? "IF NOT EXISTS ": ""; |
| | | db.execSQL("CREATE TABLE " + constraint + "\"ORDER\" (" + // |
| | | "\"_id\" INTEGER PRIMARY KEY NOT NULL ," + // 0: id |
| | | "\"ORDER_NO\" TEXT," + // 1: orderNo |
| | | "\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id |
| | | "\"ORDER_NO\" TEXT UNIQUE ," + // 1: orderNo |
| | | "\"GRID_NO\" TEXT NOT NULL ," + // 2: gridNo |
| | | "\"STATE\" INTEGER NOT NULL ," + // 3: state |
| | | "\"PUT_IN_DATE\" INTEGER NOT NULL ," + // 4: putInDate |
| | | "\"PUT_IN_DATE\" TEXT," + // 4: putInDate |
| | | "\"TAKE_CODE\" TEXT);"); // 5: takeCode |
| | | } |
| | | |
| | |
| | | @Override |
| | | protected final void bindValues(DatabaseStatement stmt, Order entity) { |
| | | stmt.clearBindings(); |
| | | stmt.bindLong(1, entity.getId()); |
| | | |
| | | Long id = entity.getId(); |
| | | if (id != null) { |
| | | stmt.bindLong(1, id); |
| | | } |
| | | |
| | | String orderNo = entity.getOrderNo(); |
| | | if (orderNo != null) { |
| | |
| | | } |
| | | stmt.bindString(3, entity.getGridNo()); |
| | | stmt.bindLong(4, entity.getState()); |
| | | stmt.bindLong(5, entity.getPutInDate()); |
| | | |
| | | String putInDate = entity.getPutInDate(); |
| | | if (putInDate != null) { |
| | | stmt.bindString(5, putInDate); |
| | | } |
| | | |
| | | String takeCode = entity.getTakeCode(); |
| | | if (takeCode != null) { |
| | |
| | | @Override |
| | | protected final void bindValues(SQLiteStatement stmt, Order entity) { |
| | | stmt.clearBindings(); |
| | | stmt.bindLong(1, entity.getId()); |
| | | |
| | | Long id = entity.getId(); |
| | | if (id != null) { |
| | | stmt.bindLong(1, id); |
| | | } |
| | | |
| | | String orderNo = entity.getOrderNo(); |
| | | if (orderNo != null) { |
| | |
| | | } |
| | | stmt.bindString(3, entity.getGridNo()); |
| | | stmt.bindLong(4, entity.getState()); |
| | | stmt.bindLong(5, entity.getPutInDate()); |
| | | |
| | | String putInDate = entity.getPutInDate(); |
| | | if (putInDate != null) { |
| | | stmt.bindString(5, putInDate); |
| | | } |
| | | |
| | | String takeCode = entity.getTakeCode(); |
| | | if (takeCode != null) { |
| | |
| | | |
| | | @Override |
| | | public Long readKey(Cursor cursor, int offset) { |
| | | return cursor.getLong(offset + 0); |
| | | return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); |
| | | } |
| | | |
| | | @Override |
| | | public Order readEntity(Cursor cursor, int offset) { |
| | | Order entity = new Order( // |
| | | cursor.getLong(offset + 0), // id |
| | | cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id |
| | | cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // orderNo |
| | | cursor.getString(offset + 2), // gridNo |
| | | cursor.getInt(offset + 3), // state |
| | | cursor.getLong(offset + 4), // putInDate |
| | | cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4), // putInDate |
| | | cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5) // takeCode |
| | | ); |
| | | return entity; |
| | |
| | | |
| | | @Override |
| | | public void readEntity(Cursor cursor, Order entity, int offset) { |
| | | entity.setId(cursor.getLong(offset + 0)); |
| | | entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); |
| | | entity.setOrderNo(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1)); |
| | | entity.setGridNo(cursor.getString(offset + 2)); |
| | | entity.setState(cursor.getInt(offset + 3)); |
| | | entity.setPutInDate(cursor.getLong(offset + 4)); |
| | | entity.setPutInDate(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4)); |
| | | entity.setTakeCode(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5)); |
| | | } |
| | | |
| | |
| | | |
| | | @Override |
| | | public boolean hasKey(Order entity) { |
| | | throw new UnsupportedOperationException("Unsupported for entities with a non-null key"); |
| | | return entity.getId() != null; |
| | | } |
| | | |
| | | @Override |