using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///TODO /// [SugarTable("tool_check_result_icon")] public partial class ToolCheckResultIcon { public ToolCheckResultIcon(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:TODO /// Default: /// Nullable:True /// public int? tenantid {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public long? orgid {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public string resultcode {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:False /// public string resultname {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:False /// public string icon {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:False /// public int resulttype {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? attribute1 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? attribute2 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? attribute3 {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? timestamp {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public DateTime? lastmodificationtime {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public long? lastmodifieruserid {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? lastmodifierfullname {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public DateTime creationtime {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public long? creatoruserid {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? creatorfullname {get;set;} } }