- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TDEV_DevAlert
- {
- public Guid C_ID { get; set; }
- public string C_DeviceCode { get; set; }
- public string C_ConfigCode { get; set; }
- public string C_Value { get; set; }
- public DateTime D_CreateOn { get; set; }
- }
- }
|