加设备相关实体类
This commit is contained in:
134
EquipMgr/Tnb.EquipMgr.Entities/Entity/EqpSpotInsRecordD.cs
Normal file
134
EquipMgr/Tnb.EquipMgr.Entities/Entity/EqpSpotInsRecordD.cs
Normal file
@@ -0,0 +1,134 @@
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities;
|
||||
|
||||
///<summary>
|
||||
///点巡检执行记录子表
|
||||
///</summary>
|
||||
[SugarTable("eqp_spot_ins_record_d")]
|
||||
public partial class EqpSpotInsRecordD : BaseEntity<string>
|
||||
{
|
||||
public EqpSpotInsRecordD()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:点巡检执行记录id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string spot_ins_record_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:点巡检项id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string spot_ins_item_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:判断类型
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string judge_type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:上限值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? high_value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否包含上限值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? high_value_is_include { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:下限值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public decimal? low_value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否包含下限值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? low_value_is_include { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:标准值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public double? standard_value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:单位id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string unit_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:结果 1 通过 2 不通过
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际测量值
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public double? real_value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:排序
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public long ordinal { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:编码
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:名称
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:判断内容
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string judge_content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:点巡检方法
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string inspection_method { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:备注
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string remark { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user