TDEV_DevAlertConfig.cs 692 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TDEV_DevAlertConfig
  7. {
  8. public string C_Code { get; set; }
  9. public string C_Name { get; set; }
  10. public string C_Remark { get; set; }
  11. public Guid C_CreateBy { get; set; }
  12. public DateTime D_CreateOn { get; set; }
  13. public Guid? C_LastUpdatedBy { get; set; }
  14. public DateTime? D_LastUpdatedOn { get; set; }
  15. public string C_Status { get; set; }
  16. public virtual TSYS_User C_CreateByNavigation { get; set; }
  17. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  18. }
  19. }