1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.lxzn.framework.domain.ucenter.request;
|
| import lombok.Data;
|
| @Data
| public class ButtonRequest {
| private String buttonPerm;
| private String buttonName;
| private Integer buttonType;
| //排序字段
| private String descStr;
| private String ascStr;
| }
|
|