TMTN_AlarmOrder.cs 1005 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Linq;
  8. namespace Ropin.Inspection.Model.Entities
  9. {
  10. public class TMTN_AlarmOrder
  11. {
  12. [Key]
  13. [MaxLength(50)]
  14. public string C_ID { get; set; }
  15. [Required]
  16. public string C_Name { get; set; }
  17. public string C_PushMsgResultCode { get; set; }
  18. public string C_MessageCode { get; set; }
  19. public string C_ExamineBy { get; set; }
  20. public DateTime? D_ExamineOn { get; set; }
  21. public string C_Remark { get; set; }
  22. [Required]
  23. public string C_CreateBy { get; set; }
  24. [Required]
  25. public DateTime D_CreateOn { get; set; }
  26. public string C_LastUpdatedBy { get; set; }
  27. public DateTime? D_LastUpdatedOn { get; set; }
  28. [Required]
  29. [MaxLength(1)]
  30. public string C_Status { get; set; } = "1";
  31. }
  32. }