LawFirmDto.cs 686 B

12345678910111213141516171819202122232425
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using AutoMapper.Configuration.Annotations;
  5. namespace ContractService.LawFirm.Dto
  6. {
  7. /// <summary>
  8. /// 律所信息
  9. /// </summary>
  10. [AutoMapTo(typeof(LawFirmInfo)),AutoMapFrom(typeof(LawFirmInfo))]
  11. public class LawFirmDto: EntityDto<string>
  12. {
  13. public string Name { get; set; }
  14. public string DisplayName { get; set; }
  15. public string Description { get; set; }
  16. [Ignore]
  17. public string MasterLawyerNo { get; set; }
  18. [Ignore]
  19. public string MasterLawyerCode { get; set; }
  20. [Ignore]
  21. public string MasterLawyerName { get; set; }
  22. }
  23. }