mitao
2024-05-23 1e779629fc4257df807a48280f3fc23eae752653
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.sinata.rest.modular.system.controller.common.body;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "实体ID-请求参数")
public class BodyId {
 
    @ApiModelProperty(value = "ID")
    private Integer id;
}