龚焕茏
2024-07-24 61a5cdb61ed9caab7f77c4b01e35d58bb68cfef6
src/main/java/com/ycl/jxkg/domain/entity/MeetStudent.java
@@ -1,16 +1,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;
}