using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 设备保养执行记录子表 /// [SugarTable("eqp_maintain_record_d")] public partial class EqpMaintainRecordD : BaseEntity { public EqpMaintainRecordD() { id = SnowflakeIdHelper.NextId(); } /// /// 设备保养执行记录id /// public string maintain_record_id { get; set; } = string.Empty; /// /// 设备保养检项id /// public string maintain_item_id { get; set; } = string.Empty; /// /// 编码 /// public string? code { get; set; } /// /// 名称 /// public string? name { get; set; } /// /// 结果 1 通过 2 不通过 /// public string? result { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 排序 /// public long ordinal { get; set; } /// /// 设备保养设备模板id /// public string? maintain_tem_equip_id { get; set; } /// /// 是否通过 /// public string? is_pass { get; set; } /// /// 保养项描述 /// public string? descrip { get; set; } /// /// 保养类型 /// public string maintain_type { get; set; } = string.Empty; /// /// 保养内容 /// public string? maintain_content { get; set; } /// /// 保养结果描述 /// public string? maintain_descrip { get; set; } /// /// 复核 1 通过 2 不通过 /// public string? repeat_result { get; set; } /// /// 复核结果描述 /// public string? repeat_descrip { get; set; } }