xiangpei
2024-05-09 97c5552f705e03a3a6e5864e3be6b1078844a4d3
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
package com.mindskip.xzs.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author gonghl
 */
@TableName(value = "t_exam_miss")
@Data
public class ExamMiss implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    private Integer examId;
 
    private Integer userId;
 
    private static final long serialVersionUID = 1L;
}