luodangjia
2024-04-28 53d9ce668f7775b959f2d1be6f5caf30f43e5f29
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;
 
}