package cn.bsl.bxbg.zhiban.bean;
/**
* Created by Xinghx on 2018/2/5 0005.
*/
public class MenuBean {
private int resId;
private String labelTitle;
public MenuBean(int resId, String labelTitle) {
this.resId = resId;
this.labelTitle = labelTitle;
}
public int getResId() {
return resId;
}
public void setResId(int resId) {
this.resId = resId;
}
public String getLabelTitle() {
return labelTitle;
}
public void setLabelTitle(String labelTitle) {
this.labelTitle = labelTitle;
}
}
-
Xinghaoxiang authoreded97effc