|
@@ -147,8 +147,9 @@ create table t_student_apply
|
|
exam_room_id bigint not null comment '预约的考场ID',
|
|
exam_room_id bigint not null comment '预约的考场ID',
|
|
time_period_id bigint not null comment '预约时段ID',
|
|
time_period_id bigint not null comment '预约时段ID',
|
|
cancel bit(1) not null comment '是否取消预约',
|
|
cancel bit(1) not null comment '是否取消预约',
|
|
- ticketNumber varchar(50) comment '准考证号',
|
|
|
|
- seatNumber varchar(20) comment '座位号',
|
|
|
|
|
|
+ ticket_number varchar(50) comment '准考证号',
|
|
|
|
+ seat_number varchar(20) comment '座位号',
|
|
|
|
+ user_id bigint null comment '后台操作人员ID',
|
|
PRIMARY KEY (id)
|
|
PRIMARY KEY (id)
|
|
) comment '考生预约记录表';
|
|
) comment '考生预约记录表';
|
|
|
|
|