ClientCompanyUpdateDto.cs 811 B

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