陈力
2023-06-09 cca5f79b3af36e5a908c5dfecbd30110febe3baa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
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".
*/
public class OrderDao extends AbstractDao<Order, Long> {
 
    public static final String TABLENAME = "ORDER";
 
    /**
     * Properties of entity Order.<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 GridNo = new Property(2, String.class, "gridNo", false, "GRID_NO");
        public final static Property XuHao = new Property(3, String.class, "xuHao", false, "XU_HAO");
        public final static Property State = new Property(4, int.class, "state", false, "STATE");
        public final static Property PutInDate = new Property(5, String.class, "putInDate", false, "PUT_IN_DATE");
        public final static Property TakeCode = new Property(6, String.class, "takeCode", false, "TAKE_CODE");
        public final static Property CreateTime = new Property(7, String.class, "createTime", false, "CREATE_TIME");
    }
 
 
    public OrderDao(DaoConfig config) {
        super(config);
    }
    
    public OrderDao(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\" (" + //
                "\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id
                "\"ORDER_NO\" TEXT UNIQUE ," + // 1: orderNo
                "\"GRID_NO\" TEXT NOT NULL ," + // 2: gridNo
                "\"XU_HAO\" TEXT NOT NULL ," + // 3: xuHao
                "\"STATE\" INTEGER NOT NULL ," + // 4: state
                "\"PUT_IN_DATE\" TEXT," + // 5: putInDate
                "\"TAKE_CODE\" TEXT," + // 6: takeCode
                "\"CREATE_TIME\" TEXT);"); // 7: createTime
    }
 
    /** Drops the underlying database table. */
    public static void dropTable(Database db, boolean ifExists) {
        String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"ORDER\"";
        db.execSQL(sql);
    }
 
    @Override
    protected final void bindValues(DatabaseStatement stmt, Order entity) {
        stmt.clearBindings();
 
        Long id = entity.getId();
        if (id != null) {
            stmt.bindLong(1, id);
        }
 
        String orderNo = entity.getOrderNo();
        if (orderNo != null) {
            stmt.bindString(2, orderNo);
        }
        stmt.bindString(3, entity.getGridNo());
        stmt.bindString(4, entity.getXuHao());
        stmt.bindLong(5, entity.getState());
 
        String putInDate = entity.getPutInDate();
        if (putInDate != null) {
            stmt.bindString(6, putInDate);
        }
 
        String takeCode = entity.getTakeCode();
        if (takeCode != null) {
            stmt.bindString(7, takeCode);
        }
 
        String createTime = entity.getCreateTime();
        if (createTime != null) {
            stmt.bindString(8, createTime);
        }
    }
 
    @Override
    protected final void bindValues(SQLiteStatement stmt, Order entity) {
        stmt.clearBindings();
 
        Long id = entity.getId();
        if (id != null) {
            stmt.bindLong(1, id);
        }
 
        String orderNo = entity.getOrderNo();
        if (orderNo != null) {
            stmt.bindString(2, orderNo);
        }
        stmt.bindString(3, entity.getGridNo());
        stmt.bindString(4, entity.getXuHao());
        stmt.bindLong(5, entity.getState());
 
        String putInDate = entity.getPutInDate();
        if (putInDate != null) {
            stmt.bindString(6, putInDate);
        }
 
        String takeCode = entity.getTakeCode();
        if (takeCode != null) {
            stmt.bindString(7, takeCode);
        }
 
        String createTime = entity.getCreateTime();
        if (createTime != null) {
            stmt.bindString(8, createTime);
        }
    }
 
    @Override
    public Long readKey(Cursor cursor, int offset) {
        return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
    }    
 
    @Override
    public Order readEntity(Cursor cursor, int offset) {
        Order entity = new Order( //
            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.getString(offset + 3), // xuHao
            cursor.getInt(offset + 4), // state
            cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5), // putInDate
            cursor.isNull(offset + 6) ? null : cursor.getString(offset + 6), // takeCode
            cursor.isNull(offset + 7) ? null : cursor.getString(offset + 7) // createTime
        );
        return entity;
    }
     
    @Override
    public void readEntity(Cursor cursor, Order entity, int offset) {
        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.setXuHao(cursor.getString(offset + 3));
        entity.setState(cursor.getInt(offset + 4));
        entity.setPutInDate(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5));
        entity.setTakeCode(cursor.isNull(offset + 6) ? null : cursor.getString(offset + 6));
        entity.setCreateTime(cursor.isNull(offset + 7) ? null : cursor.getString(offset + 7));
     }
    
    @Override
    protected final Long updateKeyAfterInsert(Order entity, long rowId) {
        entity.setId(rowId);
        return rowId;
    }
    
    @Override
    public Long getKey(Order entity) {
        if(entity != null) {
            return entity.getId();
        } else {
            return null;
        }
    }
 
    @Override
    public boolean hasKey(Order entity) {
        return entity.getId() != null;
    }
 
    @Override
    protected final boolean isEntityUpdateable() {
        return true;
    }
    
}