TLGS_LargeScreenEvent.cs 914 B

12345678910111213141516171819202122232425262728
  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 TLGS_LargeScreenEvent
  11. {
  12. [Key]
  13. public string C_ID { get; set; }
  14. public string C_ControlCode { get; set; }
  15. public string C_DevStoreCode { get; set; }
  16. public string C_BoxCode { get; set; }
  17. public string C_Name { get; set; }
  18. public string C_Type { get; set; }
  19. public string C_CreateBy { get; set; }
  20. public DateTime D_CreateOn { get; set; }
  21. public string C_Creator { get; set; }
  22. public string C_LastUpdatedBy { get; set; }
  23. public DateTime? D_LastUpdatedOn { get; set; }
  24. public string C_Modifier { get; set; }
  25. public string C_Status { get; set; }
  26. }
  27. }