This commit is contained in:
liangjunyu
2025-10-28 17:55:28 +08:00
parent 238f30f67d
commit 001a03c747
3 changed files with 99 additions and 1 deletions

View File

@@ -74,5 +74,12 @@ namespace RB_MES_API.Models
/// </summary>
[ForeignKey("FFunctionID")]
public virtual FunctionList functions { get; set; } //此处不能 = new FunctionList(),否则修改时也会多一张单据
/// <summary>
/// 使用日志的唯一标识字段名
/// </summary>
[NotMapped]
public string LogGuid { get; set; } = string.Empty;
}
}