TLGS_LargeScreenControl.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. namespace Ropin.Inspection.Model.Entities
  8. {
  9. public class TLGS_LargeScreenControl
  10. {
  11. [Key]
  12. public string C_ID { get; set; }
  13. public string C_LargeScreenCode { get; set; }
  14. public string C_ControlID { get; set; }
  15. public string C_ControlName { get; set; }
  16. public string C_Type { get; set; }
  17. public string C_Script { get; set; }
  18. public string C_Style { get; set; }
  19. public string C_Template { get; set; }
  20. public string C_Password { get; set; }
  21. public string C_Remark { get; set; }
  22. public string C_CreateBy { get; set; }
  23. public DateTime D_CreateOn { get; set; }
  24. public string C_Creator { get; set; }
  25. public string C_LastUpdatedBy { get; set; }
  26. public DateTime? D_LastUpdatedOn { get; set; }
  27. public string C_Modifier { get; set; }
  28. public string C_Status { get; set; }
  29. }
  30. }