MenuOperationBeanDao.java 6.28 KB
package com.lijinji.call.wmsgreendao;

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 com.lijinji.call.bean.MenuOperationBean;

// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
/** 
 * DAO for table "MENU_OPERATION_BEAN".
*/
public class MenuOperationBeanDao extends AbstractDao<MenuOperationBean, Void> {

    public static final String TABLENAME = "MENU_OPERATION_BEAN";

    /**
     * Properties of entity MenuOperationBean.<br/>
     * Can be used for QueryBuilder and for referencing column names.
     */
    public static class Properties {
        public final static Property MenuName = new Property(0, String.class, "menuName", false, "MENU_NAME");
        public final static Property ParentId = new Property(1, int.class, "parentId", false, "PARENT_ID");
        public final static Property Url = new Property(2, String.class, "url", false, "URL");
        public final static Property MenuType = new Property(3, String.class, "menuType", false, "MENU_TYPE");
        public final static Property Perms = new Property(4, String.class, "perms", false, "PERMS");
        public final static Property Remark = new Property(5, String.class, "remark", false, "REMARK");
        public final static Property HasPerm = new Property(6, boolean.class, "hasPerm", false, "HAS_PERM");
    }


    public MenuOperationBeanDao(DaoConfig config) {
        super(config);
    }
    
    public MenuOperationBeanDao(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 + "\"MENU_OPERATION_BEAN\" (" + //
                "\"MENU_NAME\" TEXT," + // 0: menuName
                "\"PARENT_ID\" INTEGER NOT NULL ," + // 1: parentId
                "\"URL\" TEXT," + // 2: url
                "\"MENU_TYPE\" TEXT," + // 3: menuType
                "\"PERMS\" TEXT," + // 4: perms
                "\"REMARK\" TEXT," + // 5: remark
                "\"HAS_PERM\" INTEGER NOT NULL );"); // 6: hasPerm
    }

    /** Drops the underlying database table. */
    public static void dropTable(Database db, boolean ifExists) {
        String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"MENU_OPERATION_BEAN\"";
        db.execSQL(sql);
    }

    @Override
    protected final void bindValues(DatabaseStatement stmt, MenuOperationBean entity) {
        stmt.clearBindings();
 
        String menuName = entity.getMenuName();
        if (menuName != null) {
            stmt.bindString(1, menuName);
        }
        stmt.bindLong(2, entity.getParentId());
 
        String url = entity.getUrl();
        if (url != null) {
            stmt.bindString(3, url);
        }
 
        String menuType = entity.getMenuType();
        if (menuType != null) {
            stmt.bindString(4, menuType);
        }
 
        String perms = entity.getPerms();
        if (perms != null) {
            stmt.bindString(5, perms);
        }
 
        String remark = entity.getRemark();
        if (remark != null) {
            stmt.bindString(6, remark);
        }
        stmt.bindLong(7, entity.getHasPerm() ? 1L: 0L);
    }

    @Override
    protected final void bindValues(SQLiteStatement stmt, MenuOperationBean entity) {
        stmt.clearBindings();
 
        String menuName = entity.getMenuName();
        if (menuName != null) {
            stmt.bindString(1, menuName);
        }
        stmt.bindLong(2, entity.getParentId());
 
        String url = entity.getUrl();
        if (url != null) {
            stmt.bindString(3, url);
        }
 
        String menuType = entity.getMenuType();
        if (menuType != null) {
            stmt.bindString(4, menuType);
        }
 
        String perms = entity.getPerms();
        if (perms != null) {
            stmt.bindString(5, perms);
        }
 
        String remark = entity.getRemark();
        if (remark != null) {
            stmt.bindString(6, remark);
        }
        stmt.bindLong(7, entity.getHasPerm() ? 1L: 0L);
    }

    @Override
    public Void readKey(Cursor cursor, int offset) {
        return null;
    }    

    @Override
    public MenuOperationBean readEntity(Cursor cursor, int offset) {
        MenuOperationBean entity = new MenuOperationBean( //
            cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0), // menuName
            cursor.getInt(offset + 1), // parentId
            cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // url
            cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3), // menuType
            cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4), // perms
            cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5), // remark
            cursor.getShort(offset + 6) != 0 // hasPerm
        );
        return entity;
    }
     
    @Override
    public void readEntity(Cursor cursor, MenuOperationBean entity, int offset) {
        entity.setMenuName(cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0));
        entity.setParentId(cursor.getInt(offset + 1));
        entity.setUrl(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2));
        entity.setMenuType(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3));
        entity.setPerms(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4));
        entity.setRemark(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5));
        entity.setHasPerm(cursor.getShort(offset + 6) != 0);
     }
    
    @Override
    protected final Void updateKeyAfterInsert(MenuOperationBean entity, long rowId) {
        // Unsupported or missing PK type
        return null;
    }
    
    @Override
    public Void getKey(MenuOperationBean entity) {
        return null;
    }

    @Override
    public boolean hasKey(MenuOperationBean entity) {
        // TODO
        return false;
    }

    @Override
    protected final boolean isEntityUpdateable() {
        return true;
    }
    
}