1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| package com.mindskip.xzs.domain;
|
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 个人练习
| *
| * @author:xp
| * @date:2024/5/9 16:09
| */
| @Data
| public class SelfPractice {
|
| private Integer id;
|
| /** 用户ID */
| private Integer userId;
|
| /** 练习模式:刷题、看题 */
| private String practiceMode;
|
| /** 备注 */
| private String remark;
|
| /** 练习类型 */
| private String practiceType;
|
| /** 课目json */
| private String subjects;
|
| /** 创建时间 */
| private Date createTime;
|
| /** 跟新时间 */
| private Date updateTime;
|
| /** 逻辑删除 0 没删 1删 */
| private Integer deleted;
|
| /** 已做题数 */
| private Integer doNum;
|
| /** 题目类型 */
| private String questionType;
|
| }
|
|