TsysRoleViewModel.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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
  7. {
  8. public class TsysRoleViewModel : BaseViewModel
  9. {
  10. public string C_LicenseCode { get; set; }
  11. public Guid C_Code { get; set; }
  12. public string C_Name { get; set; }
  13. public string C_Description { get; set; }
  14. public int? I_Sort { get; set; }
  15. //public Guid C_CreateBy { get; set; }
  16. //public DateTime D_CreateOn { get; set; }
  17. //public Guid? C_LastUpdatedBy { get; set; }
  18. //public DateTime? D_LastUpdatedOn { get; set; }
  19. public string C_Status { get; set; }
  20. }
  21. public class TsysRoleOrgLicenseViewModel : BaseViewModel
  22. {
  23. public string C_LicenseCode { get; set; }
  24. public Guid C_Code { get; set; }
  25. public string C_Name { get; set; }
  26. public string C_Description { get; set; }
  27. public int? I_Sort { get; set; }
  28. public string C_Status { get; set; }
  29. public string LicenseTypeCode { get; set; }
  30. public string LicenseName { get; set; }
  31. public string OrgName { get; set; }
  32. public string LicenseTypeName { get; set; }
  33. }
  34. }