LargeScreenControlViewModel.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel.LGS
  7. {
  8. public class LargeScreenControlViewModel : BaseViewModel
  9. {
  10. public string C_ID { get; set; }
  11. public string C_LargeScreenCode { get; set; }
  12. public string C_ControlID { get; set; }
  13. public string C_ControlName { get; set; }
  14. public string C_Type { get; set; }
  15. public string C_TypeName { get; set; }
  16. public string C_Script { get; set; }
  17. public string C_Style { get; set; }
  18. public string C_Template { get; set; }
  19. public string C_Password { get; set; }
  20. public string C_Remark { get; set; }
  21. public string C_CreateBy { get; set; }
  22. public DateTime D_CreateOn { get; set; }
  23. public string C_Creator { get; set; }
  24. public string C_LastUpdatedBy { get; set; }
  25. public DateTime? D_LastUpdatedOn { get; set; }
  26. public string C_Modifier { get; set; }
  27. public string C_Status { get; set; }
  28. }
  29. }