重新生成Entity文件
This commit is contained in:
189
EquipMgr/Tnb.EquipMgr.Entities/Entity/ToolCheckItem.cs
Normal file
189
EquipMgr/Tnb.EquipMgr.Entities/Entity/ToolCheckItem.cs
Normal file
@@ -0,0 +1,189 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities
|
||||
{
|
||||
///<summary>
|
||||
///TODO
|
||||
///</summary>
|
||||
[SugarTable("tool_check_item")]
|
||||
public partial class ToolCheckItem
|
||||
{
|
||||
public ToolCheckItem(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:编号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public long 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 qctype {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int seq {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string itemcode {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string itemname {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? resulttype {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int judgetype {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? unit {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? limitlow {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? limithigh {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:TODO
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? standard {get;set;}
|
||||
|
||||
/// <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;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user