goupan
2024-04-25 b252453ff7a25e28a6bf66619fa50ee4795e0b60
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;
 
}