SetStaffLawyerDto.cs 681 B

123456789101112131415161718192021222324252627
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace ContractService.LegalCase.Dto
  4. {
  5. public class SetStaffLawyerDto : EntityDto<string>
  6. {
  7. public SetStaffLawyerDto()
  8. {
  9. List = new List<string>();
  10. }
  11. public List<string> List { get; set; }
  12. public string Master { get; set; }
  13. public string LawFirmNo { get; set; }
  14. }
  15. public class StaffLawyerDto
  16. {
  17. public string No { get; set; }
  18. public string Name { get; set; }
  19. public string UserName { get; set; }
  20. public string OrgName { get; set; }
  21. public bool IsMaster { get; set; }
  22. }
  23. }