文件名从 exam-system/src/main/java/com/gkhy/exam/institutionalaccess/entity/ThStudentCourse.java 修改 |
| | |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @TableName("th_student_course") |
| | | @TableName("th_student_batch") |
| | | @Data |
| | | public class ThStudentCourse { |
| | | public class ThStudentBatch { |
| | | @Id |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | private String uuid; |
| | | private String idcard; |
| | | private String courseUuid; |
| | | private String batchUuid; |
| | | private String name; |
| | | private Byte sex; |
| | |
| | | /** 创建时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | private String updateBy; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | } |