UserRoleView.cs 405 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
  5. {
  6. public class UserRoleView
  7. {
  8. public System.Guid? RoleID { get; set; }
  9. public System.Guid? UserID { get; set; }
  10. public string LoginID { get; set; }
  11. public string Name { get; set; }
  12. public string RoleName { get; set; }
  13. }
  14. }