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