ModulesBean.java 1.55 KB
package com.huaheng.robot.login;

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

@Entity
public class ModulesBean {

    @Id
    private long _id;
    private String menuName;
    private String id;
    private String type;
    private String parentId;
    private String url;
    public String getUrl() {
        return this.url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    public String getParentId() {
        return this.parentId;
    }
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
    public String getType() {
        return this.type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getId() {
        return this.id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getMenuName() {
        return this.menuName;
    }
    public void setMenuName(String menuName) {
        this.menuName = menuName;
    }
    public long get_id() {
        return this._id;
    }
    public void set_id(long _id) {
        this._id = _id;
    }
    @Generated(hash = 1047676766)
    public ModulesBean(long _id, String menuName, String id, String type,
            String parentId, String url) {
        this._id = _id;
        this.menuName = menuName;
        this.id = id;
        this.type = type;
        this.parentId = parentId;
        this.url = url;
    }
    @Generated(hash = 1678227107)
    public ModulesBean() {
    }


}