mh_jy_safe/APT.Data.Migrations/Migrations/20260226091606_wyw2026022601.cs
wyw 005630c792 1、三级安全教育 签到 添加字段 否则三级安全教育卡 直接显示签名 有问题
2、考试是否合格、成绩 等 做处理 不然直接有显示 与实际不合
3、三级安全教育卡 列表 按添加时间倒序排序 否则比较难找到对应的人员信息 列表添加对应字段的显示
4、三级安全教育卡 get方法修改  并响应修改前端
2026-02-28 10:34:54 +08:00

26 lines
703 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class wyw2026022601 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "ISSIGN",
table: "T_SE_NEW_USER_DETAIL",
type: "bit",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ISSIGN",
table: "T_SE_NEW_USER_DETAIL");
}
}
}