using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities;
///
/// 点巡检执行记录子表
///
[SugarTable("eqp_spot_ins_record_d")]
public partial class EqpSpotInsRecordD : BaseEntity
{
public EqpSpotInsRecordD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 点巡检执行记录id
///
public string spot_ins_record_id { get; set; } = string.Empty;
///
/// 点巡检项id
///
public string spot_ins_item_id { get; set; } = string.Empty;
///
/// 编码
///
public string? code { get; set; }
///
/// 名称
///
public string? name { get; set; }
///
/// 判断类型
///
public string judge_type { get; set; } = string.Empty;
///
/// 判断内容
///
public string? judge_content { get; set; }
///
/// 上限值
///
public decimal? high_value { get; set; }
///
/// 是否包含上限值
///
public int? high_value_is_include { get; set; }
///
/// 下限值
///
public decimal? low_value { get; set; }
///
/// 是否包含下限值
///
public int? low_value_is_include { get; set; }
///
/// 标准值
///
public decimal? standard_value { get; set; }
///
/// 单位id
///
public string unit_id { get; set; } = string.Empty;
///
/// 点巡检方法
///
public string? inspection_method { get; set; }
///
/// 结果 1 通过 2 不通过
///
public string? result { get; set; }
///
/// 实际测量值
///
public double? real_value { get; set; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 排序
///
public long ordinal { get; set; }
///
/// 点巡检设备模板id
///
public string? spot_ins_tem_equip_id { get; set; }
///
/// 是否通过
///
public string? is_pass { get; set; }
}