OrganizationUpdateDto.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System.ComponentModel.DataAnnotations;
  2. using Abp.Application.Services.Dto;
  3. using Abp.AutoMapper;
  4. using ContractService.Client;
  5. using ContractService.Configuration;
  6. namespace ContractService.Basic.Organization.Dto
  7. {
  8. /// <summary>
  9. /// 客户组织结构
  10. /// </summary>
  11. [AutoMapTo(typeof(OrganizationInfo))]
  12. public class OrganizationUpdateDto: EntityDto<string>
  13. {
  14. // [StringLength(IwbConsts.PrimaryKey)]
  15. //public string ParentNo { get; set; }
  16. /// <summary>
  17. /// 组织名称
  18. /// </summary>
  19. [StringLength(50)]
  20. public string Name { get; set; }
  21. /// <summary>
  22. /// 组织描述
  23. /// </summary>
  24. [StringLength(500)]
  25. public string Description { get; set; }
  26. /// <summary>
  27. /// 路径
  28. /// </summary>
  29. [StringLength(1000)]
  30. public string Path { get; set; }
  31. /// <summary>
  32. /// 排序序号
  33. /// </summary>
  34. public int Sort { get; set; }
  35. ///// <summary>
  36. ///// 公司信息
  37. ///// </summary>
  38. //[StringLength(IwbConsts.PrimaryKey)]
  39. //public string CompanyNo { get; set; }
  40. ///// <summary>
  41. ///// 律所信息
  42. ///// </summary>
  43. //[StringLength(IwbConsts.PrimaryKey)]
  44. //public string LawFirmNo { get; set; }
  45. }
  46. }