using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using AutoMapper.Configuration.Annotations; namespace ContractService.Client.Company.Dto { /// /// 公司信息维护 /// [AutoMapTo(typeof(ClientCompanyInfo)),AutoMapFrom(typeof(ClientCompanyInfo))] public class ClientCompanyDto: EntityDto { /// /// 公司名称 /// public string Name { get; set; } /// /// 系统显示名称 /// public string DisplayName { get; set; } /// /// 公司描述 /// public string Description { get; set; } [Ignore] public string MasterStaffNo { get; set; } [Ignore] public string MasterStaffCode { get; set; } [Ignore] public string MasterStaffName { get; set; } } }