加字段
This commit is contained in:
parent
12e6fa30d1
commit
76d41d3c8a
138999
APT.Data.Migrations/Migrations/20260409062518_hmr2026040901.Designer.cs
generated
Normal file
138999
APT.Data.Migrations/Migrations/20260409062518_hmr2026040901.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -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");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -32996,6 +32996,9 @@ namespace APT.Data.Migrations.Migrations
|
|||||||
b.Property<bool>("IS_DELETED")
|
b.Property<bool>("IS_DELETED")
|
||||||
.HasColumnType("bit");
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
b.Property<bool>("IS_SEND")
|
||||||
|
.HasColumnType("bit");
|
||||||
|
|
||||||
b.Property<int?>("METHOD")
|
b.Property<int?>("METHOD")
|
||||||
.HasColumnType("int");
|
.HasColumnType("int");
|
||||||
|
|
||||||
|
|||||||
@ -123,5 +123,8 @@ namespace APT.MS.Domain.Entities.FO
|
|||||||
[Description("是否发布")]
|
[Description("是否发布")]
|
||||||
[DataFieldIngore]
|
[DataFieldIngore]
|
||||||
public string PUBLISH { get; set; }
|
public string PUBLISH { get; set; }
|
||||||
|
|
||||||
|
[Description("是否已提醒")]
|
||||||
|
public bool IS_SEND { get; set; } = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user