ClientCompanyDto.cs 939 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using AutoMapper.Configuration.Annotations;
  5. namespace ContractService.Client.Company.Dto
  6. {
  7. /// <summary>
  8. /// 公司信息维护
  9. /// </summary>
  10. [AutoMapTo(typeof(ClientCompanyInfo)),AutoMapFrom(typeof(ClientCompanyInfo))]
  11. public class ClientCompanyDto: EntityDto<string>
  12. {
  13. /// <summary>
  14. /// 公司名称
  15. /// </summary>
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// 系统显示名称
  19. /// </summary>
  20. public string DisplayName { get; set; }
  21. /// <summary>
  22. /// 公司描述
  23. /// </summary>
  24. public string Description { get; set; }
  25. [Ignore]
  26. public string MasterStaffNo { get; set; }
  27. [Ignore]
  28. public string MasterStaffCode { get; set; }
  29. [Ignore]
  30. public string MasterStaffName { get; set; }
  31. }
  32. }