ExerciseExpandMappingDO.java
913 Bytes
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
49
package com.meishu.model;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.meishu.util.BaseModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* <p>
* 学生--拓展习题映射表
* </p>
*
* @author DengMin
* @since 2021-09-16
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("exercise_expand_mapping")
public class ExerciseExpandMappingDO extends BaseModel {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 任务id
*/
private Integer taskId;
/**
* 拓展习题ids
*/
private String exerciseIds;
/**
* 学生ids
*/
private String studentIds;
/**
* 拓展习题名称
*/
private String exerciseName;
}