MenuOperationBean.java 1.84 KB
package com.lijinji.call.bean;

import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Generated;

@Entity
public class MenuOperationBean {

    private String menuName;
    private int parentId;
    private String url;
    private String menuType;
    private String perms;
    private String remark;
    private boolean hasPerm;
    @Generated(hash = 340224058)
    public MenuOperationBean(String menuName, int parentId, String url,
            String menuType, String perms, String remark, boolean hasPerm) {
        this.menuName = menuName;
        this.parentId = parentId;
        this.url = url;
        this.menuType = menuType;
        this.perms = perms;
        this.remark = remark;
        this.hasPerm = hasPerm;
    }
    @Generated(hash = 2096535730)
    public MenuOperationBean() {
    }
    public String getMenuName() {
        return this.menuName;
    }
    public void setMenuName(String menuName) {
        this.menuName = menuName;
    }
    public int getParentId() {
        return this.parentId;
    }
    public void setParentId(int parentId) {
        this.parentId = parentId;
    }
    public String getUrl() {
        return this.url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    public String getMenuType() {
        return this.menuType;
    }
    public void setMenuType(String menuType) {
        this.menuType = menuType;
    }
    public String getPerms() {
        return this.perms;
    }
    public void setPerms(String perms) {
        this.perms = perms;
    }
    public String getRemark() {
        return this.remark;
    }
    public void setRemark(String remark) {
        this.remark = remark;
    }
    public boolean getHasPerm() {
        return this.hasPerm;
    }
    public void setHasPerm(boolean hasPerm) {
        this.hasPerm = hasPerm;
    }

    
}