1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.sinata.rest.modular.member.controller.common.body;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
|
| @ApiModel(value = "实体ID-请求参数")
| public class BodyId {
|
| @ApiModelProperty(value = "ID")
| private Integer id;
|
| public void setId(Integer id) {
| this.id = id;
| }
|
| public Integer getId() {
| return id;
| }
| }
|
|