添加配置
continuous-integration/drone/push Build is passing Details

IRC_NewDev
he 2024-09-03 16:17:13 +08:00
parent 1e91c08ae3
commit a2dd550a72
2 changed files with 11 additions and 0 deletions

View File

@ -150,6 +150,11 @@ namespace IRaCIS.Core.Application.ViewModel
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; }
public string Code { get; set; } = string.Empty;
/// <summary>
/// 字段的英文值
/// </summary>
public string CodeEn { get; set; } = string.Empty;
public Guid? ParentId { get; set; }
public bool IsEnable { get; set; }
public Guid? ModuleTypeId { get; set; }

View File

@ -82,6 +82,12 @@ namespace IRaCIS.Core.Domain.Models
public string Code { get; set; } = String.Empty;
/// <summary>
/// 字段的英文值
/// </summary>
public string CodeEn { get; set; } = string.Empty;
//前端渲染数组 数组名 和数组值
public string ChildDataLabel { get; set; }