luohairen
2024-11-14 247cb86585a1d1894596ed18a6c93efecb992946
1
2
3
4
5
6
7
8
9
10
11
package com.ycl.jxkg.domain.question;
 
import lombok.Data;
 
@Data
public class RandomQuestionDTO {
    private Integer questionId;
    private Integer subjectId;
    private Integer questionType;
    private Integer difficult;
}