LawFirmUpdateDto.cs 533 B

12345678910111213141516171819202122
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace ContractService.LawFirm.Dto
  6. {
  7. /// <summary>
  8. /// 律所信息
  9. /// </summary>
  10. [AutoMapTo(typeof(LawFirmInfo))]
  11. public class LawFirmUpdateDto: EntityDto<string>
  12. {
  13. [Required]
  14. [StringLength(50)]
  15. public string Name { get; set; }
  16. public string DisplayName { get; set; }
  17. [StringLength(500)]
  18. public string Description { get; set; }
  19. }
  20. }