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_study_record") public class StudyRecord { @TableId(value = "id", type = IdType.AUTO) private Integer id; @TableField("student_id") private Integer studentId; @TableField("study_time") private Long studyTime; //上一次记录时间 @TableField("last_time") private Date lastTime; @TableField("meet_count") private Integer meetCount; }