puzhibing
2023-12-07 aa0131b1efb96c9f52371160b3a1e6823db3656a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName AppBaseGetDto
 * @description: TODO
 * @date 2023年04月19日
 * @version: 1.0
 */
@Data
public class AppBaseGetDto extends AppBaseDto{
 
    @ApiModelProperty(value = "请求对象id")
    private String id;
 
}