fuliqi
2024-07-03 526745df87b382366960df1c765b83a84d493019
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ycl.jxkg.domain.exam;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class PaperSettingItem {
    //题目数量
    private Integer num;
    //题目分数
    private BigDecimal score;
    //题目难度
    private Integer difficult;
    //学科id
    private Integer subjectId;
}