using SqlSugar; using System; namespace DeviceRepair.Models.DeviceMaintenance { /// /// /// [SugarTable("DeviceWarrantyRequestForm")] public class DeviceWarrantyRequestFormInfo { /// /// 主键编号 /// [SugarColumn(ColumnName = "AutoID", IsPrimaryKey = true, IsIdentity = true)] public int AutoID { get; set; } /// /// 唯一编号 /// [SugarColumn(ColumnName = "GUID")] public Guid Guid { get; set; } /// /// 设备表主键编号 /// [SugarColumn(ColumnName = "EquipmentPK")] public int EquipmentPK { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName = "EquipmentID")] public string EquipmentID { get; set; } /// /// 设备名称 /// [SugarColumn(ColumnName = "EquipmentName")] public string EquipmentName { get; set; } /// /// 发生地点 /// [SugarColumn(ColumnName = "Location")] public int Location { get; set; } /// /// 发生地点 /// [SugarColumn(ColumnName = "LocationName")] public string LocationName { get; set; } [SugarColumn(ColumnName = "LocationGuid")] public Guid LocationGuid { get; set; } /// /// 是否有在途生产单 /// [SugarColumn(ColumnName = "InProduction")] public bool InProduction { get; set; } /// /// 批次号 /// [SugarColumn(ColumnName = "Batch")] public string Batch { get; set; } /// /// 故障现象 /// [SugarColumn(ColumnName = "FaultSymptoms")] public string FaultSymptoms { get; set; } /// /// 设备设施部 /// 默认值: (N'设备设施部') /// [SugarColumn(ColumnName = "ReceivingDep")] public string ReceivingDep { get; set; } /// /// /// 默认值: ((0)) /// [SugarColumn(ColumnName = "IsDown")] public bool? IsDown { get; set; } /// /// 表单版本号 /// 默认值: ((1)) /// [SugarColumn(ColumnName = "FormVer")] public int? FormVer { get; set; } /// /// 申请时间 /// [SugarColumn(ColumnName = "CreatOn")] public DateTime? CreatOn { get; set; } /// /// 申请人 /// [SugarColumn(ColumnName = "CreatBy")] public int? CreatBy { get; set; } /// /// /// [SugarColumn(ColumnName = "CreatorName")] public string CreatorName { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "ModifyOn")] public DateTime? ModifyOn { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "ModifyBy")] public int? ModifyBy { get; set; } /// /// /// [SugarColumn(ColumnName = "ModifyUserName")] public string ModifyUserName { get; set; } /// /// /// [SugarColumn(ColumnName = "RestorationConfirmationOn")] public DateTime? RestorationConfirmationOn { get; set; } /// /// /// [SugarColumn(ColumnName = "RestorationConfirmationBy")] public int? RestorationConfirmationBy { get; set; } /// /// /// [SugarColumn(ColumnName = "RestorationConfirmationOnName")] public string RestorationConfirmationOnName { get; set; } } }