1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.thhy.usercore.modules.sys.sysmenu.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Author: zhang_xiao_bo
| * @Date: 2022/4/1 17:31
| * @description:
| */
| @Data
| public class MenuButtonDto implements Serializable {
|
| private String menuId;
|
| private String buttonIds;
|
| private String roleId;
|
| private String userId;
|
| public MenuButtonDto(){}
|
| public MenuButtonDto(String menuId,String roleId) {
| this.menuId = menuId;
| }
| }
|
|