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