| 12345678910111213141516171819202122 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ContractService.LawFirm.Dto
- {
-
- /// <summary>
- /// 律所信息
- /// </summary>
- [AutoMapTo(typeof(LawFirmInfo))]
- public class LawFirmUpdateDto: EntityDto<string>
- {
- [Required]
- [StringLength(50)]
- public string Name { get; set; }
- public string DisplayName { get; set; }
- [StringLength(500)]
- public string Description { get; set; }
- }
- }
|