5-4 代码提交

This commit is contained in:
fkf
2023-05-04 18:00:44 +08:00
parent b92aab2d41
commit bbad9d4785
11 changed files with 37 additions and 64 deletions

View File

@@ -246,6 +246,7 @@ CREATE TABLE `sys_plan`
`studentNo` varchar(200) DEFAULT NULL COMMENT '学号',
`planContent` text DEFAULT NULL COMMENT '学习计划内容',
`planOpinion` text DEFAULT NULL COMMENT '反馈意见',
`stateChinese` text DEFAULT NULL COMMENT '状态值中文',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE = INNODB
@@ -269,6 +270,7 @@ CREATE TABLE `sys_plan_schedule`
`planSid` varchar(64) DEFAULT NULL COMMENT '计划sid',
`planContent` text DEFAULT NULL COMMENT '进度内容',
`planOpinion` text DEFAULT NULL COMMENT '反馈意见',
`stateChinese` text DEFAULT NULL COMMENT '状态值中文',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE = INNODB