using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 设备点巡检项目 /// [SugarTable("eqp_spot_ins_item")] public partial class EqpSpotInsItem : BaseEntity { public EqpSpotInsItem() { id = SnowflakeIdHelper.NextId(); } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 编码 /// public string? code { get; set; } /// /// 名称 /// public string? name { get; set; } /// /// 判断类型1数值2结果 /// 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; } /// /// 备注 /// public string? remark { get; set; } /// /// 排序 /// public int ordinal { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 类型 1 点检 2巡检 /// public string type { get; set; } = string.Empty; }