加字段

This commit is contained in:
何美荣 2026-04-09 14:27:42 +08:00
parent 12e6fa30d1
commit 76d41d3c8a
5 changed files with 213668 additions and 73235 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,24 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class hmr2026040901 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IS_SEND",
table: "T_FO_ENTERPRISE_INFORMATION_REGISTRATION",
type: "bit",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IS_SEND",
table: "T_FO_ENTERPRISE_INFORMATION_REGISTRATION");
}
}
}

View File

@ -32996,6 +32996,9 @@ namespace APT.Data.Migrations.Migrations
b.Property<bool>("IS_DELETED")
.HasColumnType("bit");
b.Property<bool>("IS_SEND")
.HasColumnType("bit");
b.Property<int?>("METHOD")
.HasColumnType("int");

View File

@ -123,5 +123,8 @@ namespace APT.MS.Domain.Entities.FO
[Description("是否发布")]
[DataFieldIngore]
public string PUBLISH { get; set; }
[Description("是否已提醒")]
public bool IS_SEND { get; set; } = false;
}
}

File diff suppressed because it is too large Load Diff