| 12345678910111213141516171819202122232425 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using AutoMapper.Configuration.Annotations;
- namespace ContractService.LawFirm.Dto
- {
-
- /// <summary>
- /// 律所信息
- /// </summary>
- [AutoMapTo(typeof(LawFirmInfo)),AutoMapFrom(typeof(LawFirmInfo))]
- public class LawFirmDto: EntityDto<string>
- {
- 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; }
- }
- }
|