Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Entity/ToolCheckResult.cs
DEVICE8\12494 fd3982b375 修复错误
2023-05-17 14:43:46 +08:00

148 lines
3.8 KiB
C#

using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities
{
///<summary>
///TODO
///</summary>
[SugarTable("tool_check_result")]
public partial class ToolCheckResult
{
public ToolCheckResult(){
}
/// <summary>
/// Desc:编号
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public string id {get;set;} = SnowflakeIdHelper.NextId();
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public int? tenantid {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public long? orgid {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:False
/// </summary>
public string toolcode {get;set;} = string.Empty;
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:False
/// </summary>
public DateTime checkdate {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:False
/// </summary>
public string tpcode {get;set;} = string.Empty;
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:False
/// </summary>
public string result {get;set;} = string.Empty;
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? remark {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? attribute1 {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? attribute2 {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? attribute3 {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? timestamp {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public DateTime? lastmodificationtime {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public long? lastmodifieruserid {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? lastmodifierfullname {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:False
/// </summary>
public DateTime creationtime {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public long? creatoruserid {get;set;}
/// <summary>
/// Desc:TODO
/// Default:
/// Nullable:True
/// </summary>
public string? creatorfullname {get;set;}
}
}