教育训练处考试制证系统后端
zhangf
2024-07-24 790c2ba4a0b46edf191e3bac84931f796bd42b8f
exam-system/src/main/java/com/gkhy/exam/institutionalaccess/entity/ThStudentBatch.java
文件名从 exam-system/src/main/java/com/gkhy/exam/institutionalaccess/entity/ThStudentCourse.java 修改
@@ -9,14 +9,14 @@
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;
@@ -37,4 +37,7 @@
    /** 创建时间 */
    @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;
}