1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ruoyi.study.vo;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-06-13 18:36
| */
| @Data
| public class StudyStoryVO {
|
| @ApiModelProperty("故事id")
| private Integer id;
|
| @ApiModelProperty("总积分")
| private Integer integral;
|
| }
|
|