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;
|
}
|