| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 获取功能列表 */public class A_M00002 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String funcIds;//指定功能	/**	 *指定功能	 */	public void setFuncIds(String funcIds) {		this.funcIds=funcIds;	}	/**	 *指定功能	 */	public String getFuncIds() {		return this.funcIds;	}	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;	}}
 |