using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Ropin.Inspection.Model.Entities { public class TDEV_DeviceTemplate { [Key] public string C_ID { get; set; } public string C_Name { get; set; } public string C_MachineCode { get; set; } public string C_QRCode { get; set; } public string C_Marker { get; set; } public DateTime? D_ProdDate { get; set; } public string C_ProdArea { get; set; } public string C_PerformanceParameter { get; set; } public string C_Category { get; set; } public string C_Manufacturer { get; set; } public string C_ImagePath { get; set; } public string C_IconPath { get; set; } public string C_ThreeDPath { get; set; } public string C_Parameter { get; set; } public string C_Contacts { get; set; } public string C_ContactPhone { get; set; } public string C_OfficialWebsiteUrl { get; set; } public int? I_ValiDays { get; set; } public string C_Remark { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public Guid? C_LastUpdatedBy { get; set; } public DateTime? D_LastUpdatedOn { get; set; } public string C_Status { get; set; } } public class TDEV_DeviceTempOpsContent { [Key] public string C_ID { get; set; } public string C_Name { get; set; } public string C_DevTempCode { get; set; } public string C_Type { get; set; } public string C_AlarmLevel { get; set; } public int? I_Cycle { get; set; } public int? I_Sort { get; set; } public string? C_Number { get; set; } public string C_Remark { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public Guid? C_LastUpdatedBy { get; set; } public DateTime? D_LastUpdatedOn { get; set; } public string C_Status { get; set; } } }