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