|
|
@@ -3,6 +3,7 @@ package com.ctsi.System.SysRole.entity.VO;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.List;
|
|
|
@@ -14,6 +15,7 @@ import java.util.List;
|
|
|
*/
|
|
|
@ApiModel(value = "角色菜单表新增VO")
|
|
|
@TableName("sys_role_menu")
|
|
|
+@Data
|
|
|
public class SysRoleMenuAddVO implements Serializable{
|
|
|
/** 角色id */
|
|
|
@ApiModelProperty(value = "角色id")
|
|
|
@@ -21,21 +23,4 @@ public class SysRoleMenuAddVO implements Serializable{
|
|
|
/** 菜单id */
|
|
|
@ApiModelProperty(value = "菜单id")
|
|
|
private List<Long> menuId ;
|
|
|
-
|
|
|
- /** 角色id */
|
|
|
- public Long getRoleId(){
|
|
|
- return this.roleId;
|
|
|
- }
|
|
|
- /** 角色id */
|
|
|
- public void setRoleId(Long roleId){
|
|
|
- this.roleId=roleId;
|
|
|
- }
|
|
|
- /** 菜单id */
|
|
|
- public List<Long> getMenuId(){
|
|
|
- return this.menuId;
|
|
|
- }
|
|
|
- /** 菜单id */
|
|
|
- public void setMenuId(List<Long> menuId){
|
|
|
- this.menuId=menuId;
|
|
|
- }
|
|
|
}
|