2、培训记录 获取 培训题目数量修改(之前有bug) 3、在线考试 添加 分数 是否合格 不合格的时候添加 今日 提醒 关注后续培训 同时 告诉培训组织者 培训未通过人员信息 4、培训效果评估 评估结果 默认可空,不然查看默认 “好”
34 lines
991 B
C#
34 lines
991 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace APT.Data.Migrations.Migrations
|
|
{
|
|
public partial class wyw2025112101 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "EXAMINATION_RESULTS",
|
|
table: "T_SE_TRAIN_RECORD_USER",
|
|
type: "int",
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "SCORE",
|
|
table: "T_SE_TRAIN_RECORD_USER",
|
|
type: "int",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "EXAMINATION_RESULTS",
|
|
table: "T_SE_TRAIN_RECORD_USER");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "SCORE",
|
|
table: "T_SE_TRAIN_RECORD_USER");
|
|
}
|
|
}
|
|
}
|