fuliqi
2024-07-04 f5379a7100a20f538092eb839b2f4c9f6d3a1b45
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
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("t_meet_student")
public class MeetStudent {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @TableField("meet_id")
    private Integer meetId;
    @TableField("meet_name")
    private String meetName;
    @TableField("student_id")
    private Integer studentId;
    @TableField("start_time")
    private Date startTime;
    @TableField("create_time")
    private Date createTime;
    @TableField("during_time")
    private Long duringTime;
    @TableField
    private Integer version;
}