fuliqi
2024-06-13 b972a9478d9c08ed25b9e608efc743fe06c5ace0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ycl.jxkg.domain.exam;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class PaperQuestion {
    //关联题目id
    private Integer questionId;
    //排序
    private Integer order;
    //题目分数
    private BigDecimal score;
 
}