1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.thhy.usercore.modules.sys.sysmenu.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Author: zhang_xiao_bo
| * @Date: 2022/4/14 15:17
| * @description:
| */
| @Data
| public class MenuUrlDto implements Serializable {
|
| private String menuId;
|
| private String urlIds;
| }
|
|