1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.stylefeng.roses.kernel.rule.pojo.request;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.io.Serializable;
|
| @ApiModel("基础ID请求")
| @Data
| public class BaseIdRequest implements Serializable {
|
| private static final long serialVersionUID = 1L;
|
| @ApiModelProperty("ID")
| private Long id;
|
| }
|
|