fuliqi
2024-06-14 6fd2460cc439e64789925e41d7106627d354fcd4
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;
 
}