using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// TODO /// [SugarTable("tool_check_result_icon")] public partial class ToolCheckResultIcon : BaseEntity { public ToolCheckResultIcon() { id = SnowflakeIdHelper.NextId(); } /// /// TODO /// public int? tenantid { get; set; } /// /// TODO /// public long? orgid { get; set; } /// /// TODO /// public string resultcode { get; set; } = string.Empty; /// /// TODO /// public string resultname { get; set; } = string.Empty; /// /// TODO /// public string icon { get; set; } = string.Empty; /// /// TODO /// public int resulttype { get; set; } /// /// TODO /// public string? attribute1 { get; set; } /// /// TODO /// public string? attribute2 { get; set; } /// /// TODO /// public string? attribute3 { get; set; } /// /// TODO /// public string? timestamp { get; set; } /// /// TODO /// public DateTime? lastmodificationtime { get; set; } /// /// TODO /// public long? lastmodifieruserid { get; set; } /// /// TODO /// public string? lastmodifierfullname { get; set; } /// /// TODO /// public DateTime creationtime { get; set; } = DateTime.Now; /// /// TODO /// public long? creatoruserid { get; set; } /// /// TODO /// public string? creatorfullname { get; set; } }