using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.dev { /// /// 点检计划与设备关联表 /// [SugarTable("device_rel_pp_at")] public class DeviceRelPpAt { /// /// 点检计划 id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_point_inspection_plan_id")] public string FkPointInspectionPlanId { get; set; } /// /// 设备台账id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_device_account_id")] public int FkDeviceAccountId { get; set; } /// /// 巡检设备顺序 /// public int? Sort { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }