using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities { /// ///TODO /// [SugarTable("tool_model_check_item")] public partial class ToolModelCheckItem { public ToolModelCheckItem(){ } /// /// 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 toolmodel {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:False /// public int seq {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public string checkitemcode {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:False /// public string checkitemname {get;set;} = string.Empty; /// /// Desc:TODO /// Default: /// Nullable:True /// public string? resulttype {get;set;} /// /// Desc:TODO /// Default: /// Nullable:False /// public int judgetype {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? unit {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public decimal? limitlow {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public decimal? limithigh {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public decimal? standard {get;set;} /// /// Desc:TODO /// Default: /// Nullable:True /// public string? remark {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;} } }