using System.ComponentModel.DataAnnotations; using Abp.Application.Services.Dto; using Abp.AutoMapper; using ContractService.Client; using ContractService.Configuration; namespace ContractService.Basic.Organization.Dto { /// /// 客户组织结构 /// [AutoMapTo(typeof(OrganizationInfo))] public class OrganizationUpdateDto: EntityDto { // [StringLength(IwbConsts.PrimaryKey)] //public string ParentNo { get; set; } /// /// 组织名称 /// [StringLength(50)] public string Name { get; set; } /// /// 组织描述 /// [StringLength(500)] public string Description { get; set; } /// /// 路径 /// [StringLength(1000)] public string Path { get; set; } /// /// 排序序号 /// public int Sort { get; set; } ///// ///// 公司信息 ///// //[StringLength(IwbConsts.PrimaryKey)] //public string CompanyNo { get; set; } ///// ///// 律所信息 ///// //[StringLength(IwbConsts.PrimaryKey)] //public string LawFirmNo { get; set; } } }