稽查加配置
parent
45b14abe63
commit
7164a53267
|
@ -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>
|
||||||
|
|
|
@ -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; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue