using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities
{
///
///TODO
///
[SugarTable("tool_model_check_period")]
public partial class ToolModelCheckPeriod
{
public ToolModelCheckPeriod(){
}
///
/// 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 string tpcode {get;set;} = string.Empty;
///
/// 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;}
}
}