using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using AutoMapper.Configuration.Annotations; namespace ContractService.LawFirm.Dto { /// /// 律所信息 /// [AutoMapTo(typeof(LawFirmInfo)),AutoMapFrom(typeof(LawFirmInfo))] public class LawFirmDto: EntityDto { public string Name { get; set; } public string DisplayName { get; set; } public string Description { get; set; } [Ignore] public string MasterLawyerNo { get; set; } [Ignore] public string MasterLawyerCode { get; set; } [Ignore] public string MasterLawyerName { get; set; } } }