TSYSRoleHandViewModel.cs 854 B

1234567891011121314151617181920212223242526272829
  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.SYS
  7. {
  8. public class TSYSRoleHandViewModel: BaseViewModel
  9. {
  10. public Guid C_RoleCode { get; set; }
  11. public Guid C_HandCode { get; set; }
  12. }
  13. public class TSYSRoleHandModel : BaseViewModel
  14. {
  15. public Guid C_RoleCode { get; set; }
  16. public string C_RoleName { get; set; }
  17. public Guid C_HandCode { get; set; }
  18. public string C_HandName { get; set; }
  19. public string C_HandNo { get; set; }
  20. public string C_MachineCode { get; set; }
  21. public string C_Marker { get; set; }
  22. }
  23. public class AddRoleHandModel
  24. {
  25. public Guid C_RoleCode { get; set; }
  26. public List<Guid> HandList { get; set; }
  27. }
  28. }