xiangpei
2024-06-03 ade2140f7950c36b401d434e025bf0b677f2673c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ycl.jxkg.domain.question;
 
import lombok.Data;
 
@Data
public class QuestionItemObject {
 
    private String prefix;
 
    private String content;
 
    private Integer score;
 
    private String itemUuid;
 
}