稽查加配置

IRC_NewDev
he 2024-08-27 09:46:20 +08:00
parent 45b14abe63
commit 7164a53267
2 changed files with 15 additions and 1 deletions

View File

@ -268,6 +268,13 @@ namespace IRaCIS.Core.Application.ViewModel
public string ForeignKeyText { get; set; } = string.Empty; public string ForeignKeyText { get; set; } = string.Empty;
/// <summary>
/// 英文的翻译
/// </summary>
public string ForeignKeyEnText { get; set; } = string.Empty;
/// <summary> /// <summary>
/// 接口名 /// 接口名
/// </summary> /// </summary>

View File

@ -130,7 +130,10 @@ namespace IRaCIS.Core.Domain.Models
/// <summary> 字典 </summary> /// <summary> 字典 </summary>
public string ForeignKeyText { get; set; } = String.Empty; public string ForeignKeyText { get; set; } = String.Empty;
/// <summary>
/// 英文的翻译
/// </summary>
public string ForeignKeyEnText { get; set; } = string.Empty;
public string TableConfigJsonStr { get; set; } = String.Empty; public string TableConfigJsonStr { get; set; } = String.Empty;
@ -183,11 +186,15 @@ namespace IRaCIS.Core.Domain.Models
public string ListName { get; set; } = String.Empty; public string ListName { get; set; } = String.Empty;
public bool IsFixedColumn { get; set; } public bool IsFixedColumn { get; set; }
public string FixedColumnName { get; set; } = String.Empty; public string FixedColumnName { get; set; } = String.Empty;
public string FixedColumnEnName { get; set; } = String.Empty;
public string ColumnName { get; set; } = String.Empty; public string ColumnName { get; set; } = String.Empty;
public string ColumnValue { get; set; } = String.Empty; public string ColumnValue { get; set; } = String.Empty;
public bool IsMerge { get; set; } public bool IsMerge { get; set; }
public string MergeColumnName { get; set; } = String.Empty; public string MergeColumnName { get; set; } = String.Empty;
public string MergeColumnEnName { get; set; } = String.Empty;
public bool IsPicture { get; set; } public bool IsPicture { get; set; }