| 123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- using Abp.Application.Services.Dto;
- namespace ContractService.LegalCase.Dto
- {
- public class SetStaffLawyerDto : EntityDto<string>
- {
- public SetStaffLawyerDto()
- {
- List = new List<string>();
- }
- public List<string> List { get; set; }
- public string Master { get; set; }
- public string LawFirmNo { get; set; }
- }
- public class StaffLawyerDto
- {
-
- public string No { get; set; }
- public string Name { get; set; }
- public string UserName { get; set; }
- public string OrgName { get; set; }
- public bool IsMaster { get; set; }
- }
- }
|