1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.zy.api.entity;
|
| import java.util.Map;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| @Data
| @ApiModel("基础请求参数")
| @Accessors(chain = true)
| public class BaseRequstParam {
|
| private Map<String, Object> root;
| }
|
|