Compare commits
No commits in common. "91e455379574fbd5e2426a309555b936581eefbd" and "2e7e3acf681c2c506092f017c85dc203f29b7b52" have entirely different histories.
91e4553795
...
2e7e3acf68
|
@ -14774,11 +14774,6 @@
|
||||||
<member name="T:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit">
|
<member name="T:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit">
|
||||||
<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary>
|
<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.IsDefaultChoice">
|
|
||||||
<summary>
|
|
||||||
是否默认选择
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.CodeEn">
|
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.CodeEn">
|
||||||
<summary>
|
<summary>
|
||||||
字段的英文值
|
字段的英文值
|
||||||
|
|
|
@ -148,11 +148,6 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public Guid UpdateUserId { get; set; }
|
public Guid UpdateUserId { get; set; }
|
||||||
public string Code { get; set; } = string.Empty;
|
public string Code { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 是否默认选择
|
|
||||||
/// </summary>
|
|
||||||
public bool IsDefaultChoice { get; set; } = false;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字段的英文值
|
/// 字段的英文值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -1192,7 +1192,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
Sort = data.Sort,
|
Sort = data.Sort,
|
||||||
ValueCN = data.ValueCN,
|
ValueCN = data.ValueCN,
|
||||||
ChildrenTypeValue = leftchildrenType.Value,
|
ChildrenTypeValue = leftchildrenType.Value,
|
||||||
IsDefaultChoice= data.IsDefaultChoice,
|
|
||||||
DictionaryKey = data.DictionaryKey,
|
DictionaryKey = data.DictionaryKey,
|
||||||
EnumType = data.EnumType,
|
EnumType = data.EnumType,
|
||||||
ObjectTypeId = data.ObjectTypeId,
|
ObjectTypeId = data.ObjectTypeId,
|
||||||
|
|
|
@ -117,11 +117,6 @@ public class FrontAuditConfig : BaseFullAuditEntity
|
||||||
|
|
||||||
public string ValueCN { get; set; } = null!;
|
public string ValueCN { get; set; } = null!;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 是否默认选择
|
|
||||||
/// </summary>
|
|
||||||
public bool IsDefaultChoice { get; set; } = false;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
public class UrlConfig
|
public class UrlConfig
|
||||||
{
|
{
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,29 +0,0 @@
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
|
||||||
|
|
||||||
#nullable disable
|
|
||||||
|
|
||||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
public partial class IsDefaultChoice : Migration
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.AddColumn<bool>(
|
|
||||||
name: "IsDefaultChoice",
|
|
||||||
table: "FrontAuditConfig",
|
|
||||||
type: "bit",
|
|
||||||
nullable: false,
|
|
||||||
defaultValue: false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
|
||||||
{
|
|
||||||
migrationBuilder.DropColumn(
|
|
||||||
name: "IsDefaultChoice",
|
|
||||||
table: "FrontAuditConfig");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2647,9 +2647,6 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||||
.HasColumnType("bit")
|
.HasColumnType("bit")
|
||||||
.HasComment("未知是否有用-废弃核查");
|
.HasComment("未知是否有用-废弃核查");
|
||||||
|
|
||||||
b.Property<bool>("IsDefaultChoice")
|
|
||||||
.HasColumnType("bit");
|
|
||||||
|
|
||||||
b.Property<bool>("IsEnable")
|
b.Property<bool>("IsEnable")
|
||||||
.HasColumnType("bit");
|
.HasColumnType("bit");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue