hjl
2024-06-17 e11362ca4849da567a77d8b5e5be510df9fb0741
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.study.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-06-13 11:32
 */
@Data
public class GameMemoryPhotoVO {
 
    @ApiModelProperty("游戏id")
    private Integer id;
 
    @ApiModelProperty("游戏图片")
    private String photo;
 
    public GameMemoryPhotoVO(Integer id, String photo) {
        this.id = id;
        this.photo = photo;
    }
}