1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 角色增加
- */
- public class A_M00007 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String roleId;//角色ID
- /**
- *角色ID
- */
- public void setRoleId(String roleId) {
- this.roleId=roleId;
- }
- /**
- *角色ID
- */
- public String getRoleId() {
- return this.roleId;
- }
- String roleName;//角色名称
- /**
- *角色名称
- */
- public void setRoleName(String roleName) {
- this.roleName=roleName;
- }
- /**
- *角色名称
- */
- public String getRoleName() {
- return this.roleName;
- }
- String funcIds;//功能
- /**
- *功能
- */
- public void setFuncIds(String funcIds) {
- this.funcIds=funcIds;
- }
- /**
- *功能
- */
- public String getFuncIds() {
- return this.funcIds;
- }
- String menuIds;//菜单列表
- /**
- *菜单列表
- */
- public void setMenuIds(String menuIds) {
- this.menuIds=menuIds;
- }
- /**
- *菜单列表
- */
- public String getMenuIds() {
- return this.menuIds;
- }
- String roleDesc;//角色说明
- /**
- *角色说明
- */
- public void setRoleDesc(String roleDesc) {
- this.roleDesc=roleDesc;
- }
- /**
- *角色说明
- */
- public String getRoleDesc() {
- return this.roleDesc;
- }
- }
|