| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace ContractService.Client.Company.Dto
- {
-
- /// <summary>
- /// 公司信息维护
- /// </summary>
- [AutoMapTo(typeof(ClientCompanyInfo))]
- public class ClientCompanyUpdateDto: EntityDto<string>
- {
-
- /// <summary>
- /// 公司名称
- /// </summary>
- [StringLength(50)]
- public string Name { get; set; }
-
- /// <summary>
- /// 系统显示名称
- /// </summary>
- [StringLength(50)]
- public string DisplayName { get; set; }
-
- /// <summary>
- /// 公司描述
- /// </summary>
- [StringLength(500)]
- public string Description { get; set; }
- }
- }
|