2、考试 添加 试卷表单 并完善传值 3、考试完成提示按规定做提示 4、添加考试 及格判断 不及格 根据后台配置次数 判断重考 5、重考 培训内容 按规则重新刷题 课件则 排序错位考试
25 lines
680 B
C#
25 lines
680 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace APT.Data.Migrations.Migrations
|
|
{
|
|
public partial class wyw2026020401 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "COUNT_RETRY",
|
|
table: "T_SE_SECONFIG",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 1);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "COUNT_RETRY",
|
|
table: "T_SE_SECONFIG");
|
|
}
|
|
}
|
|
}
|