44323
2024-05-24 a623f1eb91b1d89872e3582b5747e9d7096ea225
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.study.api.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("故事/题目管理列表查询返回VO")
public class SubjectVO {
    @ApiModelProperty(value = "id")
    private Integer id;
    @ApiModelProperty(value = "题目名称")
    private String name;
    @ApiModelProperty(value = "英文释义")
    private String english;
    @ApiModelProperty(value = "预期题目类型")
    private String type;
    @ApiModelProperty(value = "题目状态 1=上架 2=下架")
    private Integer state;
}