/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 获取菜单列表 */ public class A_M00003 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String menuIds;//指定菜单 /** *指定菜单 */ public void setMenuIds(String menuIds) { this.menuIds=menuIds; } /** *指定菜单 */ public String getMenuIds() { return this.menuIds; } String showFlag;//显示选择 /** *显示选择 */ public void setShowFlag(String showFlag) { this.showFlag=showFlag; } /** *显示选择 */ public String getShowFlag() { return this.showFlag; } String userSel;//用户可选(1-用户可选) /** *用户可选(1-用户可选) */ public void setUserSel(String userSel) { this.userSel=userSel; } /** *用户可选(1-用户可选) */ public String getUserSel() { return this.userSel; } }