| 123456789101112131415161718192021 |
- package com.njuzr.eaibackend.po;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- @Data
- @TableName("class")
- public class Class {
- @TableId(type = IdType.AUTO)
- private Long classId;
- private String className;
- private Long courseId;
- private int stuNumber;
- private String classTime;
- private Long teacherId;
- }
|